@hashicorp/design-system-components
Version:
Helios Design System Components
19 lines (18 loc) • 475 B
TypeScript
/**
* 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;
}