10 lines
341 B
TypeScript
10 lines
341 B
TypeScript
import type { BunMariaDBConfig } from "../../types";
|
|
export default function upsertDbManagerTable({ tableName, config, }: {
|
|
tableName: string;
|
|
config?: BunMariaDBConfig;
|
|
}): Promise<void>;
|
|
export declare function removeDbManagerTable({ tableName, config, }: {
|
|
tableName: string;
|
|
config?: BunMariaDBConfig;
|
|
}): Promise<void>;
|