ts-odata-client
Version:
OData TypeScript Client
34 lines (33 loc) • 851 B
TypeScript
/**
* The supported @type {Expression} operators.
*/
export declare const enum ExpressionOperator {
And = "and",
Contains = "contains",
EndsWith = "endsWith",
Equals = "equals",
Expand = "expand",
ExpandAll = "expandAll",
FieldReference = "fieldReference",
GetByKey = "getByKey",
GetWithCount = "getWithCount",
GreaterThan = "greaterThan",
GreaterThanOrEqualTo = "greaterThanOrEqualTo",
In = "in",
LessThan = "lessThan",
LessThanOrEqualTo = "lessThanOrEqualTo",
Literal = "literal",
Not = "not",
NotEquals = "notEquals",
Or = "or",
OrderBy = "orderBy",
OrderByDescending = "orderByDescending",
Predicate = "predicate",
Select = "select",
Skip = "skip",
StartsWith = "startsWith",
Top = "top",
Any = "any",
All = "all",
Value = "value"
}