@sandlada/mdc
Version:
@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.
14 lines • 409 B
TypeScript
/**
* @license
* Copyright 2026 Kai-Orion & Sandlada
* SPDX-License-Identifier: MIT
*/
import type { LitElement } from 'lit';
import type { ITab } from './tab.interface';
export interface ITabs extends LitElement {
activeTabIndex: number;
activeTab: ITab | null;
autoActivate: boolean;
scrollToTab(tabToScrollTo?: ITab | null): Promise<void>;
}
//# sourceMappingURL=tabs.interface.d.ts.map