mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-04-26 07:22:21 +00:00
6 lines
129 B
TypeScript
6 lines
129 B
TypeScript
|
interface Options {
|
||
|
mode?: number;
|
||
|
}
|
||
|
declare function mkdirp(path: string, options?: Options): string | null;
|
||
|
export = mkdirp;
|