File

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

Description

An interface representing the details of Table data

Index

Properties

Properties

label
label: string
Type : string

Label of the column

value
value: string
Type : string

Value of the column

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 ""