Update breaking change from parsing class declaration in strict mode (as specified in ES6)

This commit is contained in:
Yui T
2015-04-08 11:35:43 -07:00
parent 65ea56c919
commit a88024c770
5 changed files with 16 additions and 16 deletions
+2 -2
View File
@@ -832,8 +832,8 @@ declare module "azure" {
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;
and(condition: string, ...args: string[]): TableQuery;
or(condition: string, ...args: string[]): TableQuery;
top(integer: number): TableQuery;
toQueryObject(): any;
toPath(): string;