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
/
JoinClause.d.ts
10 lines
(9 loc)
•
220 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export declare
class
JoinClause
extends
Array
<
string
|
null
> { [
index: number
]:
string
|
null
;
/** table to join */
0
:
string
;
/** as clause */
1
:
null
|
string
;
/** condition */
2
:
string
; }