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

18 lines 755 B
import React from 'react'; import { Reference } from '@sage-bionetworks/synapse-types'; import { HelpPopoverProps } from '../HelpPopover/HelpPopover'; import { EntityFinderProps } from './EntityFinder'; export declare const UNSAVED_CHANGES = "Unsaved Changes"; export type EntityFinderModalProps = { configuration: Omit<EntityFinderProps, 'onSelectedChange'>; show: boolean; title: string; titleHelpPopoverProps?: HelpPopoverProps; onConfirm: (selected: Reference[]) => void; confirmButtonCopy: string; onCancel: () => void; promptCopy?: string; initialSelected?: Reference[]; }; export declare const EntityFinderModal: (props: EntityFinderModalProps) => React.ReactNode; //# sourceMappingURL=EntityFinderModal.d.ts.map