UNPKG

hongluan-ui

Version:
17 lines (16 loc) 443 B
import type { Slots } from 'vue'; import type { ExtractPropTypes } from 'vue'; export interface IBreadcrumbProps { separator: string; slots: Slots; } export declare const breadcrumbProps: { /** * @description separator character */ readonly separator: { readonly type: StringConstructor; readonly default: "/"; }; }; export declare type BreadcrumbProps = ExtractPropTypes<typeof breadcrumbProps>;