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