mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
25 lines
354 B
TypeScript
25 lines
354 B
TypeScript
|
|
export interface IColumnMapperMeta {
|
|
key: string;
|
|
accessor?: string;
|
|
value?: string;
|
|
}
|
|
|
|
export interface ITableCell {
|
|
value: string;
|
|
key: string;
|
|
}
|
|
|
|
export type ITableRow = {
|
|
rows: ITableCell[];
|
|
};
|
|
|
|
export interface ITableColumn {
|
|
key: string,
|
|
label: string,
|
|
}
|
|
|
|
export interface ITable {
|
|
columns: ITableColumn[],
|
|
data: ITableRow[],
|
|
} |