UNPKG
sqlify
Version:
latest (2.5.2)
2.5.2
2.5.1
2.5.0
2.4.0
2.3.1
2.3.0
2.2.0
2.1.1
2.1.0
2.0.0
1.0.4
1.0.4-beta.5
1.0.4-beta.4
1.0.4-beta.3
1.0.4-beta.2
1.0.4-beta.1
1.0.4-beta
1.0.3
1.0.2
1.0.1
1.0.0
Yet another SQL query builder for Node.js
github.com/vajahath/sqlify
vajahath/sqlify
sqlify
/
dist
/
typings
/
handles
/
where.d.ts
7 lines
(6 loc)
•
194 B
TypeScript
View Raw
1
2
3
4
5
6
7
/** * implementing: WHERE * https://hiddentao.com/squel/api.html#select_where */
import
{
WhereObj
}
from
'../WhereObj'
;
export
declare
const
where
:
(
chain
:
any
,
resource
:
WhereObj
) =>
void
;