hongluan-ui
Version:
Hongluan Component Library for Vue 3
17 lines (16 loc) • 443 B
TypeScript
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>;