Beginning Yeoman generator generator. Currently creates templates in as patches vs a common set of files.

This commit is contained in:
SteveSandersonMS
2016-04-28 14:28:34 +01:00
parent 5534f1bd54
commit 1830c20212
16 changed files with 22301 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
// 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 module 'mkdirp' {
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;
}