Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
wormen committed May 2, 2019
1 parent 98dabd5 commit 552e025
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// type

import sep from 'path';
import {sep} from 'path';

type AnymatchFn = (testString: string) => boolean;
type AnymatchPattern = string|RegExp|AnymatchFn;
Expand All @@ -15,4 +15,4 @@ declare const anymatch: {
(matchers: AnymatchMatcher, testString: string|any[], returnIndex: true): number;
(matchers: AnymatchMatcher, testString: string|any[]): boolean;
}
export = anymatch
export = anymatch

0 comments on commit 552e025

Please sign in to comment.