synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
14 lines (13 loc) • 508 B
TypeScript
/// <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;