Merge pull request #986 from antiveeranna/master

type definitions for TableQuery class
This commit is contained in:
Diullei Gomes
2013-09-03 06:26:14 -07:00
+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;
}
}