28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
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>;
|