UNPKG

526 BTypeScriptView Raw
1/**
2 * @description 全屏功能
3 * @author xiaokyo
4 */
5import Editor from '../index';
6import '../../assets/style/full-screen.less';
7/**
8 * 设置全屏
9 * @param editor 编辑器实例
10 */
11export declare const setFullScreen: (editor: Editor) => void;
12/**
13 * 取消全屏
14 * @param editor 编辑器实例
15 */
16export declare const setUnFullScreen: (editor: Editor) => void;
17/**
18 * 初始化全屏功能
19 * @param editor 编辑器实例
20 */
21declare const initFullScreen: (editor: Editor) => void;
22export default initFullScreen;