UNPKG

synapse-react-client

Version:

[![Build Status](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client.svg?branch=main)](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synaps

21 lines (20 loc) 848 B
import React from 'react'; import { ColumnModel, ColumnType, SelectColumn, UserGroupHeader, UserProfile } from '../../utils/synapseTypes'; import { EntityHeader } from '../../utils/synapseTypes/EntityHeader'; import { CardLink, ColumnSpecifiedLink, MarkdownLink } from '../CardContainerLogic'; declare type SynapseTableCellProps = { columnType: ColumnType; columnValue: string; isBold: string; columnLinkConfig?: CardLink | MarkdownLink | ColumnSpecifiedLink; mapEntityIdToHeader: Record<string, EntityHeader>; mapUserIdToHeader: Partial<UserGroupHeader & UserProfile>; rowIndex?: number; columnName: string; selectColumns?: SelectColumn[]; columnModels?: ColumnModel[]; tableEntityId?: string; rowData: string[]; }; export declare const SynapseTableCell: React.FC<SynapseTableCellProps>; export {};