t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
24 lines (23 loc) • 940 B
TypeScript
import type { RendererNode, RendererElement, ComputedOptions, MethodOptions, ExtractPropTypes, InjectionKey, PropType, VNode, Component } from 'vue';
export declare const Props: {
readonly separator: {
readonly type: PropType<VNode<RendererNode, RendererElement, {
[key: string]: any;
}> | Component<any, any, any, ComputedOptions, MethodOptions>>;
readonly default: () => null;
};
readonly itemColor: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly separatorColor: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly fontSize: {
readonly type: PropType<string | number>;
readonly default: () => string;
};
};
export declare type BreadcrumbPropsType = ExtractPropTypes<typeof Props>;
export declare const BreadcrumbPropsKey: InjectionKey<BreadcrumbPropsType>;