datasquirel/dist/package-shared/shell/utils/create-table-handle-table-record.d.ts
Benjamin Toby 7e8bb37c09 Updates
2025-07-05 14:59:30 +01:00

14 lines
452 B
TypeScript

import { DSQL_TableSchemaType } from "../../types";
import { DSQL_DATASQUIREL_USER_DATABASES } from "../../types/dsql";
type Param = {
tableSchema?: DSQL_TableSchemaType;
recordedDbEntry?: DSQL_DATASQUIREL_USER_DATABASES;
update?: boolean;
isMain?: boolean;
};
/**
* # Handle Table Record Update and Insert
*/
export default function ({ tableSchema, recordedDbEntry, update, isMain, }: Param): Promise<number | undefined>;
export {};