Skip to content

Commit f600250

Browse files
committed
Fix types
Fixes #268
1 parent b0d7330 commit f600250

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

index.d.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
import type FastGlob from 'fast-glob'; // eslint-disable-line import/no-duplicates
2-
import {type Options as FastGlobOptions, type Entry} from 'fast-glob'; // eslint-disable-line import/no-duplicates
1+
import type FastGlob from 'fast-glob';
32

4-
export type GlobEntry = Entry;
3+
export type GlobEntry = FastGlob.Entry;
54

65
export type GlobTask = {
76
readonly patterns: string[];
@@ -13,7 +12,7 @@ export type ExpandDirectoriesOption =
1312
| readonly string[]
1413
| {files?: readonly string[]; extensions?: readonly string[]};
1514

16-
type FastGlobOptionsWithoutCwd = Omit<FastGlobOptions, 'cwd'>;
15+
type FastGlobOptionsWithoutCwd = Omit<FastGlob.Options, 'cwd'>;
1716

1817
export type Options = {
1918
/**

0 commit comments

Comments
 (0)