synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
10 lines (9 loc) • 368 B
TypeScript
import React from 'react';
import { Reference } from '../../utils/synapseTypes';
import { Map } from 'immutable';
export declare type SelectionPaneProps = {
title: string | ((count: number) => string);
selectedEntities: Map<string, number>;
toggleSelection: (entity: Reference) => void;
};
export declare const SelectionPane: React.FC<SelectionPaneProps>;