UNPKG

@electric-sql/cli

Version:

ElectricSQL command line interface (CLI).

17 lines (16 loc) 459 B
/** * Tagged template literal dedent function that also unwraps lines. * Double newlines become a single newline. */ export declare function dedent(strings: TemplateStringsArray, ...values: unknown[]): string; /** * Builds the Postgres database URL for the given parameters. */ export declare function buildDatabaseURL(opts: { user: string; password: string; host: string; port: number; dbName: string; ssl?: boolean; }): string;