UNPKG
db-conn-pgsql
Version:
latest (1.6.2)
1.6.2
1.6.1
1.6.0
1.5.0
1.3.6
1.3.5
1.3.4
1.3.3
1.3.1
1.0.0
0.0.1
Database Connecton Postgres SQL
gitee.com/sparklex/db-conn-pgsql
db-conn-pgsql
/
dist
/
dialect
/
PgSqlDialect.d.ts
7 lines
(6 loc)
•
239 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
Connection
,
Dialect
}
from
"db-conn"
;
import
{
Table
}
from
"db-conn/dist/schema/Table.js"
;
export
declare
class
PgSqlDialect
implements
Dialect
{
table
(
conn
:
Connection
,
table
:
string
):
Promise
<
Table
>;
quote
():
string
; }