mirror of https://gitee.com/godoos/godoos.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
638 B
22 lines
638 B
/// <reference types="./types" />
|
|
declare class WYSIWYG {
|
|
range: Range;
|
|
element: HTMLPreElement;
|
|
popover: HTMLDivElement;
|
|
selectPopover: HTMLDivElement;
|
|
afterRenderTimeoutId: number;
|
|
hlToolbarTimeoutId: number;
|
|
preventInput: boolean;
|
|
composingLock: boolean;
|
|
commentIds: string[];
|
|
private scrollListener;
|
|
constructor(vditor: IVditor);
|
|
getComments(vditor: IVditor, getData?: boolean): ICommentsData[];
|
|
triggerRemoveComment(vditor: IVditor): void;
|
|
showComment(): void;
|
|
hideComment(): void;
|
|
unbindListener(): void;
|
|
private copy;
|
|
private bindEvent;
|
|
}
|
|
export { WYSIWYG };
|
|
|