import type { DB, DBHandlerServer } from "../Prostgles"; import type { TableConfig } from "./TableConfig"; type Args = { db: DB; tableConf: TableConfig[string]; tableName: string; tableHandler: DBHandlerServer[string] | undefined; }; /** * Given a tableHandler, table name, column definitions and constraint definitions, * returns the queries to align any existing table with the given column definitions */ export declare const getTableColumnQueries: ({ db, tableConf, tableName, tableHandler, }: Args) => Promise; export {}; //# sourceMappingURL=getTableColumnQueries.d.ts.map