mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-10 09:52:00 +00:00
22 lines
319 B
TypeScript
22 lines
319 B
TypeScript
export class Exportable {
|
|
/**
|
|
*
|
|
* @param tenantId
|
|
* @returns
|
|
*/
|
|
public async exportable(
|
|
query: Record<string, any>,
|
|
): Promise<Array<Record<string, any>>> {
|
|
return [];
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param data
|
|
* @returns
|
|
*/
|
|
public transform(data: Record<string, any>) {
|
|
return data;
|
|
}
|
|
}
|