From 24368d42ff2536e661d9fd5b63ca0cb456a5cbdc Mon Sep 17 00:00:00 2001 From: "anti.veeranna" Date: Wed, 4 Sep 2013 09:38:34 -0400 Subject: [PATCH] add missing properties/methods to QueryEntitiesResultContinuation --- node-azure/azure.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/node-azure/azure.d.ts b/node-azure/azure.d.ts index 1ed0e7436..2fed47cfb 100644 --- a/node-azure/azure.d.ts +++ b/node-azure/azure.d.ts @@ -332,6 +332,10 @@ declare module "azure" { export interface QueryEntitiesResultContinuation extends QueryResultContinuation { tableQuery: TableQuery; + nextPartitionKey: string; + nextRowKey: string; + getNextPage(callback?: QueryEntitiesCallback): void; + hasNextPage(): boolean; } export interface ModifyEntityCallback { @@ -370,4 +374,5 @@ declare module "azure" { //#endregion export function isEmulated(): boolean; + }