Creates a directory. If recursive is true, creates parents as needed.
(path: string, recursive: boolean, mode?: number)
| 78 | |
| 79 | /** Creates a directory. If recursive is true, creates parents as needed. */ |
| 80 | mkdir(path: string, recursive: boolean, mode?: number): Promise<void>; |
| 81 | |
| 82 | /** Lists entry names in a directory. Throw if it does not exist. */ |
| 83 | readdir(path: string): Promise<string[]>; |
no outgoing calls
no test coverage detected