@fesjs/fes-design
Version:
fes-design for PC
18 lines (17 loc) • 573 B
TypeScript
import type { ComponentInnerProps, ExtractPublicPropTypes } from '../_util/interface';
export declare const breadcrumbProps: {
readonly separator: {
readonly type: StringConstructor;
readonly default: "/";
};
readonly fontSize: {
readonly type: NumberConstructor;
readonly default: 14;
};
};
export type BreadcrumbProps = ExtractPublicPropTypes<typeof breadcrumbProps>;
type BreadcrumbInnerProps = ComponentInnerProps<typeof breadcrumbProps>;
export interface BreadcrumbInject {
props: BreadcrumbInnerProps;
}
export {};