Merge pull request #2133 from swook/master

node-uuid: Let require("node-uuid") work in nodejs
This commit is contained in:
Bart van der Schoor
2014-05-02 17:03:07 +02:00
+1 -1
View File
@@ -46,7 +46,7 @@ interface UUID {
v4(options?: UUIDOptions, buffer?: Buffer, offset?: number): string
}
declare module 'uuid' {
declare module "node-uuid" {
var uuid: UUID;
export = uuid;
}