|
-
- import * as fs from 'fs';
-
- declare namespace makeDir {
- interface Options {
-
-
- readonly mode?: number;
-
-
-
- readonly fs?: typeof fs;
- }
- }
-
- declare const makeDir: {
-
-
- (path: string, options?: makeDir.Options): Promise<string>;
-
-
-
- sync(path: string, options?: makeDir.Options): string;
- };
-
- export = makeDir;
|