File

src/app/components/tissue-info-table/tissue-info-table.ts

Description

An interface representing the details of Tissue table info

Index

Properties

Properties

tissueData
tissueData: TableData[]
Type : TableData[]

Table data for the tissue

tissueName
tissueName: string
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[];
}

results matching ""

    No results matching ""