bun-mariadb/dist/utils/append-default-fields-to-db-schema.d.ts

7 lines
220 B
TypeScript

import { type BUN_MARIADB_DatabaseSchemaType } from "../types";
type Params = {
dbSchema: BUN_MARIADB_DatabaseSchemaType;
};
export default function ({ dbSchema }: Params): BUN_MARIADB_DatabaseSchemaType;
export {};