@autobe/agent
Version:
AI backend server code generator
12 lines (11 loc) • 383 B
TypeScript
import { AutoBeDatabaseSchemaDefinition } from "@autobe/interface";
import { IValidation } from "typia";
export declare namespace AutoBeDatabaseSchemaProgrammer {
const validate: (props: {
path: string;
errors: IValidation.IError[];
targetTable: string;
otherTables: string[];
definition: AutoBeDatabaseSchemaDefinition;
}) => void;
}