mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import { Transformer } from '@/lib/Transformer/Transformer';
|
|
|
|
export class GetBankRulesTransformer extends Transformer {
|
|
/**
|
|
* Include these attributes to sale invoice object.
|
|
* @returns {Array}
|
|
*/
|
|
public includeAttributes = (): string[] => {
|
|
return [];
|
|
};
|
|
}
|