mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
- feat: metable store - feat: metable store with settings store. - feat: settings middleware to auto-save and load. - feat: DI db manager to master container. - feat: write some logs to sale invoices.
11 lines
150 B
TypeScript
11 lines
150 B
TypeScript
|
|
|
|
export interface IOptionDTO {
|
|
key: string,
|
|
value: string|number,
|
|
group: string,
|
|
};
|
|
|
|
export interface IOptionsDTO {
|
|
options: IOptionDTO[],
|
|
}; |