1 | import { CommandRegistry } from '../command';
|
2 | import { AlternativeHandlerMenuNode, CommandMenuNode, MenuAction, MenuNode } from './menu-types';
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | export declare class ActionMenuNode implements MenuNode, CommandMenuNode, Partial<AlternativeHandlerMenuNode> {
|
9 | protected readonly action: MenuAction;
|
10 | protected readonly commands: CommandRegistry;
|
11 | readonly altNode: ActionMenuNode | undefined;
|
12 | constructor(action: MenuAction, commands: CommandRegistry);
|
13 | get command(): string;
|
14 | get when(): string | undefined;
|
15 | get id(): string;
|
16 | get label(): string;
|
17 | get icon(): string | undefined;
|
18 | get sortString(): string;
|
19 | }
|
20 | //# sourceMappingURL=action-menu-node.d.ts.map |
\ | No newline at end of file |