@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
16 lines (15 loc) • 728 B
TypeScript
/// <reference types="hoist-non-react-statics" />
import * as React from 'react';
import BasicComponent from '../BasicComponent';
export interface IGeneralProps {
unit: string[];
precision: number;
setUnit: (unit: string[]) => void;
setPrecision: (precision: number) => void;
getPopupContainer?: () => HTMLElement;
}
export declare class ValueElement extends BasicComponent<IGeneralProps, {}> {
render(): React.JSX.Element;
}
declare const _default: React.ComponentClass<IGeneralProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<IGeneralProps, any> & typeof ValueElement) | (React.FunctionComponent<IGeneralProps> & typeof ValueElement), {}>;
export default _default;