From cbd13655e56d2554de624e24d1cc6ee870612f85 Mon Sep 17 00:00:00 2001 From: Troy Gerwien Date: Mon, 31 Mar 2014 22:20:09 +0800 Subject: [PATCH] add hash to NodeJs.Url.Url --- node/node.d.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/node/node.d.ts b/node/node.d.ts index bb70b7d01..8318c278d 100644 --- a/node/node.d.ts +++ b/node/node.d.ts @@ -272,7 +272,7 @@ declare module "domain" { var M: NodeJs.Domain; export = M; } // // Note that the type 'Server' is accessed via the variable 'http', meaning that // Server must be not just a type, but also a property on 'http'. The 'pure' typings -// declared in the NodeJs module below don't support this usage. With the _ExternalTypes_ +// declared in the NodeJs module below don't support this usage. With the _ExternalShim_ // shim, the above code will continue working unchanged. New type definitions should // prefer something like: // @@ -764,6 +764,7 @@ declare module NodeJs { search: string; query: string; slashes: boolean; + hash: string; } export interface UrlOptions { protocol?: string;