UNPKG
typeorm-pglite
Version:
latest (0.3.4)
0.3.4
0.3.2
0.3.1
0.3.0
0.2.0
0.1.0
PGlite support for TypeORM
github.com/muraliprajapati/typeorm-pglite
muraliprajapati/typeorm-pglite
typeorm-pglite
/
dist
/
pglite-driver.d.ts
10 lines
(9 loc)
•
258 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
PGliteOptions
}
from
"@electric-sql/pglite"
;
import
{
PGlitePool
}
from
"./pglite-pool"
;
export
declare
class
PGliteDriver
{
constructor
(
options
?:
PGliteOptions
);
get
driver
(): {
new
(): {};
Pool
:
typeof
PGlitePool
; }; }