{
    "description": {
        "author": "Salesforce",
        "text": [
            "Selector: lightning-vertical-navigation-item-badge.",
            "Represents the lightning-vertical-navigation-item-badge Lightning web component.",
            "Get the item link by text, or get the badge text."
        ]
    },
    "shadow": {
        "elements": [
            {
                "name": "navigationItemLink",
                "type": [
                    "clickable"
                ],
                "public": true,
                "selector": {
                    "css": "a[class*='slds-nav-vertical']"
                }
            },
            {
                "name": "badgeText",
                "selector": {
                    "css": "a[class*='slds-nav-vertical']"
                }
            }
        ]
    },
    "methods": [
        {
            "name": "getBadgeText",
            "description": {
                "text": [
                    "Get the badge text"
                ],
                "return": "string"
            },
            "compose": [
                {
                    "element": "navigationItemLink",
                    "apply": "getText"
                }
            ]
        },
        {
            "name": "clickBadgeLink",
            "description": {
                "text": [
                    "Clicks the link of the vertical navigation item badge"
                ],
                "return": "void"
            },
            "compose": [
                {
                    "element": "navigationItemLink",
                    "apply": "click"
                }
            ]
        }
    ]
}