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.
14 lines
479 B
14 lines
479 B
/// <reference types="./types" />
|
|
export declare class Hint {
|
|
timeId: number;
|
|
element: HTMLDivElement;
|
|
recentLanguage: string;
|
|
private splitChar;
|
|
private lastIndex;
|
|
constructor(hintExtends: IHintExtend[]);
|
|
render(vditor: IVditor): void;
|
|
genHTML(data: IHintData[], key: string, vditor: IVditor): void;
|
|
fillEmoji: (element: HTMLElement, vditor: IVditor) => void;
|
|
select(event: KeyboardEvent, vditor: IVditor): boolean;
|
|
private getKey;
|
|
}
|
|
|