datasquirel/dist/package-shared/functions/backend/db/grab-parsed-value.d.ts
Benjamin Toby 20a390e4a8 Updates
2025-07-18 18:34:04 +01:00

15 lines
385 B
TypeScript

import { DSQL_TableSchemaType } from "../../../types";
type Param = {
value?: any;
tableSchema?: DSQL_TableSchemaType;
encryptionKey?: string;
encryptionSalt?: string;
dataKey: string;
};
/**
* # Update DB Function
* @description
*/
export default function grabParsedValue({ value, tableSchema, encryptionKey, encryptionSalt, dataKey, }: Param): any;
export {};