synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
14 lines (13 loc) • 433 B
TypeScript
import React from 'react';
import { SelectColumn } from '../../../utils/synapseTypes/';
declare type ColumnSelectionProps = {
headers?: SelectColumn[];
isColumnSelected: string[];
show?: boolean;
onChange?: () => void;
toggleColumnSelection: (name: string) => void;
darkTheme?: boolean;
facetAliases?: {};
};
export declare const ColumnSelection: React.FunctionComponent<ColumnSelectionProps>;
export {};