@fesjs/fes-design
Version:
fes-design for PC
38 lines (37 loc) • 1.46 kB
TypeScript
import { type PropType } from 'vue';
import type { ExtractPublicPropTypes } from '../_util/interface';
type TitlePlacement = 'center' | 'left' | 'right';
export declare const dividerProps: {
readonly vertical: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly titlePlacement: {
readonly type: PropType<TitlePlacement>;
readonly default: "center";
};
};
export type DividerProps = ExtractPublicPropTypes<typeof dividerProps>;
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
readonly vertical: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly titlePlacement: {
readonly type: PropType<TitlePlacement>;
readonly default: "center";
};
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
readonly vertical: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly titlePlacement: {
readonly type: PropType<TitlePlacement>;
readonly default: "center";
};
}>> & Readonly<{}>, {
readonly vertical: boolean;
readonly titlePlacement: TitlePlacement;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;