UNPKG

@jsxc/jsxc

Version:

Real-time XMPP chat application with video calls, file transfer and encrypted communication

12 lines (10 loc) 256 B
export type MenuItem = { id: string; label: string; icon?: string; disabled?: boolean; handler: (ev: Event) => void; }; export default interface IMenuItemFactory<Params extends any[]> { generate: (...args: Params) => MenuItem | false; }