datasquirel/dist/package-shared/utils/db/schema/resolve-schema-children-handle-children-tables.d.ts
Benjamin Toby 7e8bb37c09 Updates
2025-07-05 14:59:30 +01:00

10 lines
402 B
TypeScript

import { DSQL_DatabaseSchemaType, DSQL_TableSchemaType } from "../../../types";
type Params = {
currentDbSchema: DSQL_DatabaseSchemaType;
currentTableSchema: DSQL_TableSchemaType;
currentTableSchemaIndex: number;
userId: string | number;
};
export default function ({ currentDbSchema, currentTableSchema, currentTableSchemaIndex, userId, }: Params): DSQL_DatabaseSchemaType;
export {};