UNPKG

react-markdown-editor-lite

Version:
17 lines (16 loc) 444 B
/// <reference types="react" /> import { PluginComponent } from './Plugin'; interface FullScreenState { enable: boolean; } export default class FullScreen extends PluginComponent<FullScreenState> { static pluginName: string; static align: string; constructor(props: any); private handleClick; private handleChange; componentDidMount(): void; componentWillUnmount(): void; render(): JSX.Element; } export {};