@clickup/pg-microsharding
Version:
Microshards support for PostgreSQL
13 lines • 325 B
TypeScript
import type { Sql } from "./quote";
/**
* Runs pg_dump, does some basic parsing and returns the result.
*/
export declare function getDump({ fromDsn, schema, }: {
fromDsn: string;
schema: string;
}): Promise<{
preData: Sql;
primaryKeys: string[];
postData: Sql;
}>;
//# sourceMappingURL=getDump.d.ts.map