summaryrefslogtreecommitdiff
path: root/includes/search/node_modules/fast-glob/out/providers/sync.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'includes/search/node_modules/fast-glob/out/providers/sync.d.ts')
-rw-r--r--includes/search/node_modules/fast-glob/out/providers/sync.d.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/includes/search/node_modules/fast-glob/out/providers/sync.d.ts b/includes/search/node_modules/fast-glob/out/providers/sync.d.ts
new file mode 100644
index 0000000..5861db4
--- /dev/null
+++ b/includes/search/node_modules/fast-glob/out/providers/sync.d.ts
@@ -0,0 +1,9 @@
+import { Task } from '../managers/tasks';
+import ReaderSync from '../readers/sync';
+import { Entry, EntryItem, ReaderOptions } from '../types';
+import Provider from './provider';
+export default class ProviderSync extends Provider<EntryItem[]> {
+ protected _reader: ReaderSync;
+ read(task: Task): EntryItem[];
+ api(root: string, task: Task, options: ReaderOptions): Entry[];
+}