Sha256: a877eff63216a52ca8d06431e888e3e3522c323361537d156f94f877870ef21c
Contents?: true
Size: 502 Bytes
Versions: 1
Compression:
Stored size: 502 Bytes
Contents
// 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 declare function mkdirp(dir: string, cb: (err: any, made: string) => void): void; declare function mkdirp(dir: string, flags: any, cb: (err: any, made: string) => void): void; declare namespace mkdirp { function sync(dir: string, flags?: any): string; } export = mkdirp;
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dragonfly_chrome_headless-0.2.0 | node_modules/@types/mkdirp/index.d.ts |