src/app/components/tissue-info-table/tissue-info-table.ts
An interface representing the details of Tissue table info
Properties |
|
tissueData |
tissueData:
|
Type : TableData[]
|
Table data for the tissue |
tissueName |
tissueName:
|
Type : string
|
Optional |
Name of the tissue |
export interface TableData {
/** Label of the column */
label: string;
/** Value of the column */
value: string;
}
/** An interface representing the details of Tissue table info */
export interface TissueTableInfo {
/** Name of the tissue */
tissueName?: string;
/** Table data for the tissue */
tissueData: TableData[];
}