UNPKG
ubuilderjs
Version:
latest (1.0.1)
1.0.1
1.0.0
Package for manipulating arrays as queries in js
ubuilderjs
/
src
/
types
/
index.ts
9 lines
(6 loc)
•
164 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
export
type
Obj
= { [
key
:
string
|
number
|
symbol
]:
any
}
export
type
WhereTypes
=
'AND'
|
'OR'
export
interface
IWhereParams
{
AND
?:
Obj
OR
?:
Obj
}