UNPKG

@aliretail/react-materials-components

Version:
21 lines (20 loc) 599 B
import * as React from 'react'; interface ColumnPickerProps { dataSource: any[]; value: string[]; onVisibleChange: (selectedKeys: any) => void; onColumnChange: (data: any) => void; } interface ColumnPickerState { dataSource: any[]; } declare class ColumnPicker extends React.Component<ColumnPickerProps, ColumnPickerState> { constructor(props: any); static getDerivedStateFromProps(nextProps: any): { dataSource: any; }; onDrop: (info: any) => void; handleSelect: (selectedKeys: any) => void; render(): JSX.Element; } export default ColumnPicker;