type definitions for TableQuery class

This commit is contained in:
anti.veeranna
2013-09-03 03:05:37 -04:00
parent bb1a9d6a24
commit 8436b3fda0
+11 -2
View File
@@ -184,7 +184,16 @@ declare module "azure" {
}
export class TableQuery {
static select(...fields: string[]): TableQuery;
from(table: string): TableQuery;
whereKeys(partitionKey: string, rowKey: string): TableQuery;
whereNextKeys(partitionKey: string, rowKey: string): TableQuery;
where(condition: string, ...values: string[]): TableQuery;
and(condition: string, ...arguments: string[]): TableQuery;
or(condition: string, ...arguments: string[]): TableQuery;
top(integer): TableQuery;
toQueryObject(): any;
toPath(): string;
}
export class BatchServiceClient extends StorageServiceClient {
@@ -361,4 +370,4 @@ declare module "azure" {
//#endregion
export function isEmulated(): boolean;
}
}