UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

19 lines (18 loc) 767 B
/// <reference types="hoist-non-react-statics" /> import * as React from 'react'; import PropTypes from 'prop-types'; export interface IEditableProps { className?: string; onEditClick?: () => void; onSave?: () => void; onCancel?: () => void; saveHighlight?: boolean; } export declare class Editable extends React.Component<IEditableProps, any> { static contextTypes: { baseDashboardStore: PropTypes.Requireable<object>; }; render(): React.JSX.Element; } declare const _default: React.ComponentClass<IEditableProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<IEditableProps, any> & typeof Editable) | (React.FunctionComponent<IEditableProps> & typeof Editable), {}>; export default _default;