UNPKG

@hashicorp/design-system-components

Version:
23 lines (22 loc) 551 B
/** * Copyright IBM Corp. 2021, 2025 * SPDX-License-Identifier: MPL-2.0 */ import Component from '@glimmer/component'; export interface HdsBreadcrumbSignature { Args: { ariaLabel?: string; itemsCanWrap?: boolean; didInsert?: () => void; }; Blocks: { default: []; }; Element: HTMLElement; } export default class HdsBreadcrumb extends Component<HdsBreadcrumbSignature> { get didInsert(): () => void; get itemsCanWrap(): boolean; get ariaLabel(): string; get classNames(): string; }