From 0de8a1c4c4ab902f16ba418263600ca908d8b2ad Mon Sep 17 00:00:00 2001 From: SomaticIT Date: Fri, 10 Oct 2014 23:26:33 +0200 Subject: [PATCH] Fix some issues related to Date which are not transformed by the SDK --- node-azure/azure.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/node-azure/azure.d.ts b/node-azure/azure.d.ts index 06eb80831..5328dd937 100644 --- a/node-azure/azure.d.ts +++ b/node-azure/azure.d.ts @@ -844,7 +844,7 @@ declare module "azure" { container: string; etag: string; - lastModified: Date; + lastModified: string; contentType: string; contentEncoding: string; contentLanguage: string; @@ -894,7 +894,7 @@ declare module "azure" { publicAccessLevel: string; etag: string; - lastModified: Date; + lastModified: string; leaseStatus: string; leaseDuration: string; leaseState: string; @@ -916,15 +916,15 @@ declare module "azure" { container: string; blob: string; id: string; - time: Date; + time: string; etag: string; - lastModified: Date; + lastModified: string; constructor(); constructor(container: string); constructor(container: string, blob: string); constructor(container: string, blob: string, id: string); - constructor(container: string, blob: string, id: string, time: Date); + constructor(container: string, blob: string, id: string, time: string); getPropertiesFromHeaders(header: any): void; }