UNPKG

@hashicorp/design-system-components

Version:
19 lines (18 loc) 475 B
/** * Copyright (c) HashiCorp, Inc. * SPDX-License-Identifier: MPL-2.0 */ import Component from '@glimmer/component'; export interface HdsSideNavListTitleSignature { Args: { didInsertTitle?: (titleId: string) => void; }; Blocks: { default: []; }; Element: HTMLDivElement; } export default class HdsSideNavListTitle extends Component<HdsSideNavListTitleSignature> { titleId: string; didInsertTitle(element: HTMLElement): void; }