mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
427 B
TypeScript
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;
|