Initial commit
This commit is contained in:
commit
b3a51a4115
10336 changed files with 2381973 additions and 0 deletions
14
node_modules/@electric-sql/pglite-tools/dist/pg_dump.d.ts
generated
vendored
Normal file
14
node_modules/@electric-sql/pglite-tools/dist/pg_dump.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
import { PGlite } from '@electric-sql/pglite';
|
||||
|
||||
interface PgDumpOptions {
|
||||
pg: PGlite;
|
||||
args?: string[];
|
||||
fileName?: string;
|
||||
verbose?: boolean;
|
||||
}
|
||||
/**
|
||||
* Execute pg_dump
|
||||
*/
|
||||
declare function pgDump({ pg, args, fileName, }: PgDumpOptions): Promise<File>;
|
||||
|
||||
export { pgDump };
|
||||
Loading…
Add table
Add a link
Reference in a new issue