Basically working Yeoman template generator generator

This commit is contained in:
SteveSandersonMS
2016-04-28 17:01:27 +01:00
parent fc705e8bf8
commit 4de2e9673f
12 changed files with 281 additions and 52 deletions

View File

@@ -0,0 +1,15 @@
// Type definitions for node-uuid.js
// Project: https://github.com/broofa/node-uuid
// Definitions by: Jeff May <https://github.com/jeffmay>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="./node-uuid-base.d.ts" />
/**
* Expose as CommonJS module
* For use in node environment or browser environment (using webpack or other module loaders)
*/
declare module "node-uuid" {
var uuid: __NodeUUID.UUID;
export = uuid;
}