UNPKG

@launchql/migrate

Version:
10 lines (9 loc) 214 B
interface PgConfig { user: string; host: string; database: string; password: string; port?: number; } export declare function streamSql(config: PgConfig, sql: string): Promise<void>; export {};