add initial marp implementation with sample content and build configuration
This commit is contained in:
28
node_modules/mj-context-menu/js/info.d.ts
generated
vendored
Normal file
28
node_modules/mj-context-menu/js/info.d.ts
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
import { ContextMenu } from './context_menu.js';
|
||||
import { AbstractPostable } from './abstract_postable.js';
|
||||
export declare class Info extends AbstractPostable {
|
||||
private title;
|
||||
private signature;
|
||||
protected className: import("./html_classes.js").HtmlClass;
|
||||
protected role: string;
|
||||
protected contentDiv: HTMLElement;
|
||||
menu: ContextMenu;
|
||||
private close;
|
||||
private content;
|
||||
constructor(title: string, content: Function, signature: string);
|
||||
attachMenu(menu: ContextMenu): void;
|
||||
generateHtml(): void;
|
||||
post(): void;
|
||||
protected display(): void;
|
||||
click(_event: MouseEvent): void;
|
||||
keydown(event: KeyboardEvent): void;
|
||||
escape(_event: KeyboardEvent): void;
|
||||
unpost(): void;
|
||||
private generateClose;
|
||||
private generateTitle;
|
||||
protected generateContent(): HTMLElement;
|
||||
private generateSignature;
|
||||
toJson(): {
|
||||
type: string;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user