t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
36 lines (35 loc) • 1.19 kB
TypeScript
import type { PropType, ExtractPropTypes } from 'vue';
import type { DividerPositionType, DividerType } from './interface';
export declare const Props: {
readonly position: {
readonly type: PropType<DividerPositionType>;
readonly default: () => DividerPositionType;
readonly validator: (value: DividerPositionType) => boolean;
};
readonly vertical: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
readonly color: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly fontColor: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly margin: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly background: {
readonly type: StringConstructor;
readonly default: () => string;
};
readonly type: {
readonly type: PropType<DividerType>;
readonly validator: (value: DividerType) => boolean;
readonly default: () => DividerType;
};
};
export declare type DividerPropsType = ExtractPropTypes<typeof Props>;