You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
526 B
Plaintext
23 lines
526 B
Plaintext
/**
|
|
* @description 全屏功能
|
|
* @author xiaokyo
|
|
*/
|
|
import Editor from '../index';
|
|
import '../../assets/style/full-screen.less';
|
|
/**
|
|
* 设置全屏
|
|
* @param editor 编辑器实例
|
|
*/
|
|
export declare const setFullScreen: (editor: Editor) => void;
|
|
/**
|
|
* 取消全屏
|
|
* @param editor 编辑器实例
|
|
*/
|
|
export declare const setUnFullScreen: (editor: Editor) => void;
|
|
/**
|
|
* 初始化全屏功能
|
|
* @param editor 编辑器实例
|
|
*/
|
|
declare const initFullScreen: (editor: Editor) => void;
|
|
export default initFullScreen;
|