We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
sindresorhus
Learn more about funding links in repositories.
Report abuse
1 parent b0d7330 commit f600250Copy full SHA for f600250
index.d.ts
@@ -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
+import type FastGlob from 'fast-glob';
3
4
-export type GlobEntry = Entry;
+export type GlobEntry = FastGlob.Entry;
5
6
export type GlobTask = {
7
readonly patterns: string[];
@@ -13,7 +12,7 @@ export type ExpandDirectoriesOption =
13
12
| readonly string[]
14
| {files?: readonly string[]; extensions?: readonly string[]};
15
16
-type FastGlobOptionsWithoutCwd = Omit<FastGlobOptions, 'cwd'>;
+type FastGlobOptionsWithoutCwd = Omit<FastGlob.Options, 'cwd'>;
17
18
export type Options = {
19
/**
0 commit comments