UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

22 lines 881 B
export type FeaturedToolsListProps = { entityId: string; idColumnName: string; nameColumnName: string; descriptionColumnName: string; typeColumnName: string; dateColumnName?: string; filterClause: string; } & ({ toolDetailPageURL: string; toolURLColumnName?: never; } | { toolDetailPageURL?: never; toolURLColumnName: string; }); /** * Display a set of FeaturedToolCards (driven by a Table/View). Driven by the following annotations/column names: * 'id', 'name', 'type', and 'description'. */ export declare function FeaturedToolsList({ entityId, toolDetailPageURL, toolURLColumnName, idColumnName, nameColumnName, descriptionColumnName, typeColumnName, dateColumnName, filterClause, }: FeaturedToolsListProps): import("react/jsx-runtime").JSX.Element; export default FeaturedToolsList; //# sourceMappingURL=FeaturedToolsList.d.ts.map