15 lines
385 B
TypeScript
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 {};
|