UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

16 lines (15 loc) 746 B
/// <reference types="hoist-non-react-statics" /> import * as React from 'react'; import PropTypes from 'prop-types'; export interface IFullScreenProps { className?: string; } export declare class FullScreen extends React.Component<IFullScreenProps, any> { static contextTypes: { baseDashboardStore: PropTypes.Requireable<object>; toggleFullscreen: PropTypes.Requireable<(...args: any[]) => any>; }; render(): React.JSX.Element; } declare const _default: React.ComponentClass<IFullScreenProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<IFullScreenProps, any> & typeof FullScreen) | (React.FunctionComponent<IFullScreenProps> & typeof FullScreen), {}>; export default _default;