@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
17 lines (16 loc) • 744 B
TypeScript
/// <reference types="hoist-non-react-statics" />
import * as React from 'react';
import { IOptions } from '../../Common/Selector';
interface IProps {
value: string[];
onChange: (value: string[]) => void;
options: IOptions;
getPopupContainer?: () => HTMLElement;
}
export declare class RelationBucketItem extends React.Component<IProps, any> {
handleFormChange(from: string): void;
handleToChange(to: string): void;
render(): React.JSX.Element;
}
declare const _default: React.ComponentClass<IProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<IProps, any> & typeof RelationBucketItem) | (React.FunctionComponent<IProps> & typeof RelationBucketItem), {}>;
export default _default;