datasquirel/dist/package-shared/functions/backend/parseDbResults.d.ts
Benjamin Toby 6593047efd Updates
2025-04-18 12:06:15 +01:00

14 lines
523 B
TypeScript

type Param = {
unparsedResults: any[];
tableSchema?: import("../../types").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): Promise<any[] | null>;
export {};