From 3ceb61d01e4c39d7de1df4241b0c0b7c5939996f Mon Sep 17 00:00:00 2001 From: Seon-Wook Park Date: Fri, 2 May 2014 16:45:24 +0200 Subject: [PATCH] node-uuid: Let require("node-uuid") work in nodejs --- node-uuid/node-uuid.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-uuid/node-uuid.d.ts b/node-uuid/node-uuid.d.ts index 48a342204..d4857cf31 100644 --- a/node-uuid/node-uuid.d.ts +++ b/node-uuid/node-uuid.d.ts @@ -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; }