import { DSQL_UniqueConstraintSchemaType } from "../../types"; type Param = { tableName: string; dbFullName: string; tableUniqueConstraints: DSQL_UniqueConstraintSchemaType[]; }; /** * Handle DATASQUIREL Table Unique Constraints * =================================================== * @description Iterate through each datasquirel schema * table unique constraint(if available), and perform operations */ export default function handleUniqueConstraintsCreateDbFromSchema({ dbFullName, tableName, tableUniqueConstraints, }: Param): Promise; export {};