.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / fast-glob / package / out / index.d.ts
1 /// <reference types="node" />\r
2 import { IPartialOptions } from './managers/options';\r
3 import { ITask } from './managers/tasks';\r
4 import { EntryItem } from './types/entries';\r
5 import { Pattern } from './types/patterns';\r
6 /**\r
7  * Synchronous API.\r
8  */\r
9 export declare function sync(source: Pattern | Pattern[], opts?: IPartialOptions): EntryItem[];\r
10 /**\r
11  * Asynchronous API.\r
12  */\r
13 export declare function async(source: Pattern | Pattern[], opts?: IPartialOptions): Promise<EntryItem[]>;\r
14 /**\r
15  * Stream API.\r
16  */\r
17 export declare function stream(source: Pattern | Pattern[], opts?: IPartialOptions): NodeJS.ReadableStream;\r
18 /**\r
19  * Return a set of tasks based on provided patterns.\r
20  */\r
21 export declare function generateTasks(source: Pattern | Pattern[], opts?: IPartialOptions): ITask[];\r