This repository has been archived by the owner on May 14, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.d.ts
210 lines (182 loc) · 5.68 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
// Type definitions for elastic-muto
// Project: https://muto.js.org
// Definitions by: Suhas Karanth <sudo.suhas@gmail.com>
import { BoolQuery } from 'elastic-builder';
/**
* Parses given expression and generates an `elastic-builder` query object.
*
* @param {string|Where|Condition} expr
* @param {Array} [notAnalysedFields]
* parsing the expression
* @throws {SyntaxError} If expression is an invalid where condition
*/
export function parse(expr: string | Where | Condition, notAnalysedFields?: string[]): BoolQuery;
interface Location {
line: number;
column: number;
offset: number;
}
interface LocationRange {
start: Location,
end: Location
}
interface ExpectedItem {
type: string;
value?: string;
description: string;
}
export interface SyntaxError extends Error {
name: string;
message: string;
location: LocationRange;
found?: any;
expected?: ExpectedItem[];
stack?: any;
}
/**
* Class for building Property Condition to be used with `Where`.
*
* @param {string} [prop] Name of the property key to crate condition against
* @param {string} [operator] Operator for the condition. One of `is`, `eq`,
* `ne`, `lt`, `lte`, `gt`, `gte`, `exists`, `missing`, `contain`, `notcontain`
* @param {*} [value] Value for the property condition
*/
export class Condition {
constructor(prop?: string, operator?: string, value?: any);
/**
* Sets the property name for condition.
*
* @param {string} prop Name of the property key to crate condition
*/
prop(prop: string): this;
/**
* Sets the condition type to boolean with given parameter.
*
* @param {boolean} trueOrFalse `true` or `false`
*/
is(trueOrFalse: boolean): this;
/**
* Sets the type of condition as equality with given value.
*
* @param {*} value A valid string/number/date to check equality ag
*/
eq(value: any): this;
/**
* Sets the type of condition as not equal to given value.
*
* @param {*} value A valid string/number to check inequality again
*/
ne(value: any): this;
/**
* Sets the type of condition as less than given value.
*
* @param {*} value A valid string/number/date.
*/
lt(value: any): this;
/**
* Sets the type of condition as less than or equal to given value.
*
* @param {*} value A valid string/number/date.
*/
lte(value: any): this;
/**
* Sets the type of condition as greater than given value
*
* @param {*} value A valid string/number/date.
*/
gt(value: any): this;
/**
* Sets the type of condition as greater than or equal to given value
*
* @param {*} value A valid string/number/date.
*/
gte(value: any): this;
/**
* Sets the type of condition to check value exists.
*
*/
exists(): this;
/**
* Sets the type of condition to check value is missing.
*
*/
missing(): this;
/**
* Sets the type of condition to check property contains given value.
*
* @param {*} value A valid string
*/
contains(value: any): this;
/**
* Sets the type of condition to check property does not contain given value.
*
* @param {*} value A valid string
*/
notContains(value: any): this;
/**
* Builds and returns muto syntax for Property Condition
*
* Property Condition
*/
build(): string;
}
/**
* Returns an instance of `Condition` for building Property Condition to be used with `Where`.
*
* @param {string} [prop] Name of the property key to crate condition against
* @param {string} [operator] Operator for the condition. One of `is`, `eq`,
* `ne`, `lt`, `lte`, `gt`, `gte`, `exists`, `missing`, `contain`, `notcontain`
* @param {*} [value] Value for the property condition
*/
export function cn(prop?: string, operator?: string, value?: any): Condition;
/**
* Returns an instance of `Condition` for building Property Condition to be used with `Where`.
*
* @param {string} [prop] Name of the property key to crate condition against
* @param {string} [operator] Operator for the condition. One of `is`, `eq`,
* `ne`, `lt`, `lte`, `gt`, `gte`, `exists`, `missing`, `contain`, `notcontain`
* @param {*} [value] Value for the property condition
*/
export function condition(prop?: string, operator?: string, value?: any): Condition;
/**
* Class for building `Where` expressions.
*
* @param {Condition|Where|string} [condition]
*/
export class Where {
constructor(condition?: Condition | Where | string);
/**
* Adds an `and` condition. The condition can be instance of `Condition`,
* `Where`(nested expr) or just a string.
*
* @param {Condition|Where|string} condition The condition to b
* @throws {Error} If `and`, `or` are called on the same instance of `Where`
*/
and(condition: Condition | Where | string): this;
/**
* Adds an `or` condition. The condition can be instance of `Condition`,
* `Where`(nested expr) or just a string.
*
* @param {Condition|Where|string} condition The condition to b
* @throws {Error} If `and`, `or` are called on the same instance of `Where`
*/
or(condition: Condition | Where | string): this;
/**
* Build and return muto syntax for Where Expression
* Where Expression
*/
build(): string;
}
/**
* Returns an instance of `Where` for building expressions.
*
* @param {Condition|Where|string} [condition]
*/
export function where(condition?: Condition | Where | string): Where;
/**
* Utility function to parse and pretty print objects to console.
* To be used in development.
*
* @param {*} obj
*/
export function prettyPrint(obj: any): void;