datasquirel/dist/package-shared/functions/backend/db/grab-parsed-value.d.ts
2025-12-11 09:18:22 +01:00

15 lines
409 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): string | number | undefined;
export {};