Files
bun-mariadb/dist/lib/schema/sync-table-options.d.ts
T
2026-07-30 07:19:07 +01:00

6 lines
235 B
TypeScript

import type { BUN_MARIADB_TableSchemaType, BunMariaDBConfig } from "../../types";
export default function syncTableOptions({ table, config, }: {
table: BUN_MARIADB_TableSchemaType;
config?: BunMariaDBConfig;
}): Promise<void>;