@clickup/pg-microsharding
Version:
Microshards support for PostgreSQL
11 lines • 406 B
TypeScript
import type { TableInfo } from "./getTablesInSchema";
/**
* Pauses the destination subscription. When resumed (enabled), the replication
* will continue from the paused position (no data loss).
*/
export declare function disableSubscription({ toDsn, tables, schema, }: {
toDsn: string;
tables: TableInfo[];
schema: string;
}): Promise<void>;
//# sourceMappingURL=disableSubscription.d.ts.map