From c27c4a49b7362290813635c1d0104e3a4a08c3f5 Mon Sep 17 00:00:00 2001 From: andrei-markeev Date: Fri, 20 Jun 2014 01:09:37 +0300 Subject: [PATCH] camljs: fixes for All and Any method definitions --- camljs/camljs.d.ts | 4 ++++ 1 file changed, 4 insertions(+) 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 */