feat: add direct PostgreSQL and ACK deployment support
This commit is contained in:
9
scripts/postgres-client.d.mts
Normal file
9
scripts/postgres-client.d.mts
Normal file
@@ -0,0 +1,9 @@
|
||||
import type { Pool } from "pg";
|
||||
|
||||
export function getScriptDataBackend(env?: NodeJS.ProcessEnv): "local" | "postgres";
|
||||
export function createPostgresPool(options?: {
|
||||
env?: NodeJS.ProcessEnv;
|
||||
applicationName?: string;
|
||||
}): Pool;
|
||||
export function closePostgresPool(pool?: Pool): Promise<void>;
|
||||
export function quotePostgresIdentifier(value: string): string;
|
||||
Reference in New Issue
Block a user