* Creates a directory. * @param path The path to the directory. * @param options Options for the directory creation. * @returns A promise that resolves when the directory is created.
(path: string, options?: { recursive?: boolean })
| 37 | * @returns A promise that resolves when the directory is created. |
| 38 | */ |
| 39 | mkdir(path: string, options?: { recursive?: boolean }): Promise<string | undefined>; |
| 40 | |
| 41 | /** |
| 42 | * Gets the stats of a file or directory. |
no outgoing calls
no test coverage detected