node-uuid: Let require("node-uuid") work in nodejs

This commit is contained in:
Seon-Wook Park
2014-05-02 16:46:20 +02:00
parent 82a3df0fe6
commit 3ceb61d01e
+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;
}