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

14 lines (13 loc) 508 B
/// <reference types="react" /> import { Reference } from '../../utils/synapseTypes'; import { EntityFinderProps } from './EntityFinder'; export declare type EntityFinderModalProps = { configuration: Omit<EntityFinderProps, 'onSelectedChange'>; show: boolean; onClose: () => void; title: string; onConfirm: (selected: Reference[]) => void; confirmButtonCopy: string; onCancel: () => void; }; export declare const EntityFinderModal: (props: EntityFinderModalProps) => JSX.Element;