mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-06-01 19:45:48 +08:00
12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
import PgEars = require("pg-ears");
|
|
|
|
const pgEars = PgEars({
|
|
checkInterval: 10000,
|
|
maxAttempts: 6 * 60 * 24,
|
|
host: "example.com",
|
|
port: 5432,
|
|
database: "example",
|
|
user: "postgres",
|
|
password: ""
|
|
});
|