datasquirel/dist/package-shared/functions/backend/parseDbResults.d.ts
Benjamin Toby 8ac8b8eb51 Updates
2025-07-28 07:23:45 +01:00

15 lines
544 B
TypeScript

import { DSQL_TableSchemaType } from "../../types";
type Param = {
unparsedResults: any[];
tableSchema?: DSQL_TableSchemaType;
};
/**
* Parse Database results
* ==============================================================================
* @description this function takes a database results array gotten from a DB handler
* function, decrypts encrypted fields, and returns an updated array with no encrypted
* fields
*/
export default function parseDbResults({ unparsedResults, tableSchema, }: Param): any[] | null;
export {};