diff --git a/node-azure/azure.d.ts b/node-azure/azure.d.ts index 374eec439ebba5..1ed0e743680020 100644 --- a/node-azure/azure.d.ts +++ b/node-azure/azure.d.ts @@ -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; -} \ No newline at end of file +}