mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
22 lines
296 B
TypeScript
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;
|
|
}
|
|
}
|