mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
Merge pull request #2379 from andrei-markeev/master
camljs: fixes for All and Any method definitions
This commit is contained in:
4
camljs/camljs.d.ts
vendored
4
camljs/camljs.d.ts
vendored
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user