add missing properties/methods to QueryEntitiesResultContinuation

This commit is contained in:
anti.veeranna
2013-09-04 15:52:04 -04:00
parent 6f66973a16
commit 24368d42ff
+5
View File
@@ -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;
}