mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 21:00:01 +08:00
Merge pull request #2956 from SomaticIT/fix-azure
Fix azure implementation of QueueMessageResult
This commit is contained in:
15
node-azure/azure.d.ts
vendored
15
node-azure/azure.d.ts
vendored
@@ -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;
|
||||
}
|
||||
@@ -945,6 +945,11 @@ declare module "azure" {
|
||||
|
||||
export class QueueMessageResult {
|
||||
queue: string;
|
||||
insertiontime: string;
|
||||
expirationtime: string;
|
||||
timenextvisible: string;
|
||||
messagetext: string;
|
||||
dequeuecount: string;
|
||||
messageid: string;
|
||||
popreceipt: string;
|
||||
metadata: StorageMetadata;
|
||||
|
||||
Reference in New Issue
Block a user