2
0
mirror of https://github.com/frappe/books.git synced 2025-01-24 07:38:25 +00:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
212 B
TypeScript
Raw Normal View History

import { Doc } from 'fyo/model/doc';
import { ListViewSettings } from 'fyo/model/types';
2022-04-14 13:31:33 +05:30
export class Tax extends Doc {
static getListViewSettings(): ListViewSettings {
return { columns: ['name'] };
}
2022-04-14 13:31:33 +05:30
}