UNPKG

@qvant/qui-max

Version:

A Vue 3 Design system for Web.

36 lines (35 loc) 1.25 kB
import type { QBreadcrumbsPropRoute, QBreadcrumbsInstance } from './src/types'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { SFCWithInstall } from '../../../types/helpers'; export declare const QBreadcrumbs: SFCWithInstall<DefineComponent<{ linkComponent: { type: StringConstructor; default: null; }; last: { type: StringConstructor; default: null; }; route: { type: PropType<QBreadcrumbsPropRoute>; default: null; }; }, QBreadcrumbsInstance, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{ linkComponent: { type: StringConstructor; default: null; }; last: { type: StringConstructor; default: null; }; route: { type: PropType<QBreadcrumbsPropRoute>; default: null; }; }>>, { linkComponent: string; last: string; route: QBreadcrumbsPropRoute; }>>; export type { QBreadcrumbsProps, QBreadcrumbsPropRoute, QBreadcrumbsInstance } from './src/types';