* Finds files matching a glob pattern. * @param pattern The glob pattern. * @param options Options for the glob search. * @returns An async iterable of file entries.
(
pattern: string,
options: { cwd: string },
)
| 69 | * @returns An async iterable of file entries. |
| 70 | */ |
| 71 | glob( |
| 72 | pattern: string, |
| 73 | options: { cwd: string }, |
| 74 | ): AsyncIterable<{ name: string; parentPath: string; isFile(): boolean }>; |
no outgoing calls
no test coverage detected