mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
feat: export reports csv and xlsx (#286)
This commit is contained in:
@@ -10,7 +10,7 @@ export interface ITableCell {
|
||||
}
|
||||
|
||||
export type ITableRow = {
|
||||
rows: ITableCell[];
|
||||
cells: ITableCell[];
|
||||
};
|
||||
|
||||
export interface ITableColumn {
|
||||
@@ -28,4 +28,13 @@ export interface ITable {
|
||||
export interface ITableColumnAccessor {
|
||||
key: string;
|
||||
accessor: string;
|
||||
}
|
||||
}
|
||||
|
||||
export interface ITableData {
|
||||
columns: ITableColumn[];
|
||||
rows: ITableRow[];
|
||||
}
|
||||
|
||||
export interface IFinancialTable {
|
||||
table: ITableData;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user