mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
fix: accounts TS interfaces.
This commit is contained in:
@@ -4,14 +4,22 @@ export interface IAccountDTO {
|
||||
name: string,
|
||||
code: string,
|
||||
description: string,
|
||||
accountTypeNumber: number,
|
||||
accountTypeId: number,
|
||||
parentAccountId: number,
|
||||
active: boolean,
|
||||
};
|
||||
|
||||
export interface IAccount {
|
||||
name: string,
|
||||
slug: string,
|
||||
code: string,
|
||||
description: string,
|
||||
accountTypeNumber: number,
|
||||
accountTypeId: number,
|
||||
parentAccountId: number,
|
||||
active: boolean,
|
||||
predefined: boolean,
|
||||
amount: number,
|
||||
currencyCode: string,
|
||||
};
|
||||
|
||||
export interface IAccountsFilter extends IDynamicListFilterDTO {
|
||||
|
||||
Reference in New Issue
Block a user