UNPKG

@sandlada/mdc

Version:

@sandlada/mdc is an open source component library that follows the Material Design 3 design specifications.

16 lines 500 B
export type NavigationRailCollapsedVariant = 'vertical' | 'round'; export declare const NavigationRailCollapsedVariant: { readonly Vertical: 'vertical'; readonly Round: 'round'; }; export interface INavigationRail { quick: boolean; expanded: boolean; modal: boolean; xr: boolean; collapsedVariant: NavigationRailCollapsedVariant; returnValue: string; expand(): Promise<void>; collapse(): Promise<void>; } //# sourceMappingURL=navigation-rail.interface.d.ts.map