UNPKG
pg-mutex-lock
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Mutex Lock using postgreSQL
github.com/colonist4/pg-mutex-lock
colonist4/pg-mutex-lock
pg-mutex-lock
/
dist
/
driver.d.ts
5 lines
(4 loc)
•
199 B
TypeScript
View Raw
1
2
3
4
5
import
{
Client
}
from
'pg'
;
declare
type
ClientConstructorParams
=
ConstructorParameters
<
typeof
Client
>[
0
];
export
declare
function
createClient
(
params
:
ClientConstructorParams
):
Client
;
export
{};