Files
DefinitelyTyped/node-uuid/node-uuid-cjs.d.ts
2015-09-28 17:47:43 +03:00

10 lines
259 B
TypeScript

/// <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;
}