DefinitelyTyped/types/mkdirp-promise/index.d.ts
2018-05-15 17:38:46 +02:00

14 lines
427 B
TypeScript

// Type definitions for mkdirp-promise 5.0
// Project: https://github.com/ahmadnassri/mkdirp-promise
// Definitions by: Alan Plum <https://github.com/pluma>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.1
import mkdirp = require("mkdirp");
declare function mkdirpPromise(
path: string,
opts?: mkdirp.Mode | mkdirp.Options
): Promise<mkdirp.Made>;
export = mkdirpPromise;