Interface MenuNodeInternal

For most use cases, refer to MenuAction or MenuNode

interface MenuNode {
    id: string;
    onDidChange?: Event<void>;
    sortString: string;
    isVisible<T>(effectiveMenuPath, contextMatcher, context, ...args): boolean;
}

Hierarchy (view full)

Implemented by

Properties

id: string

technical identifier.

onDidChange?: Event<void>
sortString: string

Menu nodes are sorted in ascending order based on their sortString.

Methods