mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
fix: accounts types caching.
This commit is contained in:
@@ -25,3 +25,17 @@ export interface IAccount {
|
||||
export interface IAccountsFilter extends IDynamicListFilterDTO {
|
||||
stringifiedFilterRoles?: string,
|
||||
};
|
||||
|
||||
export interface IAccountType {
|
||||
id: number,
|
||||
key: string,
|
||||
normal: string,
|
||||
rootType: string,
|
||||
childType: string,
|
||||
balanceSheet: boolean,
|
||||
incomeSheet: boolean,
|
||||
}
|
||||
|
||||
export interface IAccountsTypesService {
|
||||
getAccountsTypes(tenantId: number): Promise<IAccountType>;
|
||||
}
|
||||
Reference in New Issue
Block a user