mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 11:50:31 +00:00
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[],
|
|
}; |