6 lines
167 B
TypeScript
6 lines
167 B
TypeScript
import type { BunMariaDBConfig } from "../../types";
|
|
export default function schemaCondition(config?: BunMariaDBConfig): {
|
|
where: string;
|
|
values: string[];
|
|
};
|