diff --git a/camljs/camljs.d.ts b/camljs/camljs.d.ts index 7cfba8a40d..0127b3e1dc 100644 --- a/camljs/camljs.d.ts +++ b/camljs/camljs.d.ts @@ -102,6 +102,10 @@ declare module CamlBuilder { All(...conditions: IExpression[]): IExpression; /** Adds Or clauses to the query. Use for creating bracket-expressions in conjuction with CamlBuilder.Expression(). */ Any(...conditions: IExpression[]): IExpression; + /** Adds And clauses to the query. Use for creating bracket-expressions in conjuction with CamlBuilder.Expression(). */ + All(conditions: IExpression[]): IExpression; + /** Adds Or clauses to the query. Use for creating bracket-expressions in conjuction with CamlBuilder.Expression(). */ + Any(conditions: IExpression[]): IExpression; /** Specifies that a condition will be tested against the field with the specified internal name, and the type of this field is Text */ TextField(internalName: string): ITextFieldExpression; /** Specifies that a condition will be tested against the field with the specified internal name, and the type of this field is Boolean */