site/node_modules/mj-context-menu/js/entry.d.ts

9 lines
156 B
TypeScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
import { Menu } from './menu.js';
export interface Entry {
menu: Menu;
type: string;
hide(): void;
show(): void;
isHidden(): boolean;
}