UNPKG

@electric-sql/pglite-tools

Version:

Tools for working with PGlite databases

14 lines (11 loc) 263 B
import { PGlite } from '@electric-sql/pglite'; interface PgDumpOptions { pg: PGlite; args?: string[]; fileName?: string; } /** * Execute pg_dump */ declare function pgDump({ pg, args, fileName, }: PgDumpOptions): Promise<File>; export { pgDump };