UNPKG

@material/web

Version:
18 lines (17 loc) 537 B
/** * @license * Copyright 2022 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { NavigationTabState } from '../../navigationtab/internal/state.js'; /** * MDCNavigationTabInteractionEventDetail provides details for the interaction * event. */ export interface MDCNavigationTabInteractionEventDetail { state: NavigationTabState; } /** * NavigationTabInteractionEvent is the custom event for the interaction event. */ export type NavigationTabInteractionEvent = CustomEvent<MDCNavigationTabInteractionEventDetail>;