suneditor
Version:
Vanilla JavaScript WYSIWYG web editor (2.x legacy version, actively maintained)
21 lines (18 loc) • 472 B
TypeScript
import { Module } from '../Module';
declare interface _notice extends Module {
/**
* @description Event when clicking the cancel button
* @param e Event object
*/
onClick_cancel(e: MouseEvent): void;
/**
* @description Open the notice panel
* @param text Notice message
*/
open(text: string): void;
/**
* @description Open the notice panel
*/
close(): void;
}
export default _notice;