Files
bigcapital/packages/server/src/modules/Export/Exportable.ts
2025-04-08 16:19:35 +02:00

22 lines
296 B
TypeScript

export class Exportable {
/**
*
* @param tenantId
* @returns
*/
public async exportable(
query: Record<string, any>,
): Promise<any> {
return [];
}
/**
*
* @param data
* @returns
*/
public transform(data: Record<string, any>) {
return data;
}
}