Skip to content

Commit

Permalink
fix(typings): use relative imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Justkant committed Jan 22, 2020
1 parent 37e5d97 commit 6f2b951
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
PromiseAction,
ImplementationFn,
Implementations,
} from 'types';
} from './types';

const checkAction = (types: Types, metas?: Metas, meta?: any) => {
// check `types`
Expand Down Expand Up @@ -102,4 +102,4 @@ export default function promise(implementations: Implementations) {
return promiseMiddleware;
}

export * from 'types';
export * from './types';

0 comments on commit 6f2b951

Please sign in to comment.