14 lines
452 B
TypeScript
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 {};
|