element-plus
Version:
A Component Library for Vue 3
28 lines (27 loc) • 1.14 kB
TypeScript
import type { Component, ExtractPublicPropTypes } from 'vue';
export interface BreadcrumbProps {
/**
* @description separator character
*/
separator?: string;
/**
* @description icon component of icon separator
*/
separatorIcon?: string | Component;
}
/**
* @deprecated Removed after 3.0.0, Use `BreadcrumbProps` instead.
*/
export declare const breadcrumbProps: {
readonly separator: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "/", boolean>;
readonly separatorIcon: {
readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown>>;
readonly required: false;
readonly validator: ((val: unknown) => boolean) | undefined;
__epPropKey: true;
};
};
/**
* @deprecated Removed after 3.0.0, Use `BreadcrumbProps` instead.
*/
export type BreadcrumbPropsPublic = ExtractPublicPropTypes<typeof breadcrumbProps>;