import { DSQL_ForeignKeyType } from "../../types"; type Param = { dbFullName: string; tableName: string; foreignKey: DSQL_ForeignKeyType; fieldName: string; errorLogs?: any[]; }; /** * # Update table function */ export default function handleTableForeignKey({ dbFullName, tableName, foreignKey, errorLogs, fieldName, }: Param): Promise; export {};