6 lines
230 B
TypeScript
6 lines
230 B
TypeScript
import type { BUN_MARIADB_TableSchemaType, BunMariaDBConfig } from "../../types";
|
|
export default function updateTable({ table, config, }: {
|
|
table: BUN_MARIADB_TableSchemaType;
|
|
config?: BunMariaDBConfig;
|
|
}): Promise<void>;
|