| 7 | * Function that can match a path async |
| 8 | */ |
| 9 | export interface MatchPathAsync { |
| 10 | ( |
| 11 | requestedModule: string, |
| 12 | readJson: Filesystem.ReadJsonAsync | undefined, |
| 13 | fileExists: Filesystem.FileExistsAsync | undefined, |
| 14 | extensions: ReadonlyArray<string> | undefined, |
| 15 | callback: MatchPathAsyncCallback |
| 16 | ): void; |
| 17 | } |
| 18 | |
| 19 | export interface MatchPathAsyncCallback { |
| 20 | // eslint-disable-next-line no-shadow |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…