19 lines
666 B
TypeScript
19 lines
666 B
TypeScript
// Generated by typings
|
|
// Source: https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/337587de8c13868283993bfacdcdd1a0f3291e7f/mkdirp/index.d.ts
|
|
declare module 'mkdirp' {
|
|
// Type definitions for mkdirp 0.3.0
|
|
// Project: http://github.com/substack/node-mkdirp
|
|
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
|
|
function mkdirp(dir: string, cb: (err: any, made: string) => void): void;
|
|
function mkdirp(dir: string, flags: any, cb: (err: any, made: string) => void): void;
|
|
|
|
namespace mkdirp {
|
|
function sync(dir: string, flags?: any): string;
|
|
}
|
|
export = mkdirp;
|
|
}
|