mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
Fix some issues related to Date which are not transformed by the SDK
This commit is contained in:
Vendored
+5
-5
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user