t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
80 lines (79 loc) • 2.58 kB
TypeScript
import type { DividerPositionType, DividerType } from './interface';
import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComputedRef, CSSProperties } from 'vue';
declare const _sfc_main: DefineComponent<{
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;
};
}, {
prop: {
readonly position?: unknown;
readonly vertical?: unknown;
readonly color?: unknown;
readonly fontColor?: unknown;
readonly margin?: unknown;
readonly background?: unknown;
readonly type?: unknown;
} & {
type: DividerType;
background: string;
color: string;
fontColor: string;
vertical: boolean;
position: DividerPositionType;
margin: string;
} & {};
renderSlot: ComputedRef<boolean>;
dividerStyle: ComputedRef<CSSProperties>;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
readonly position?: unknown;
readonly vertical?: unknown;
readonly color?: unknown;
readonly fontColor?: unknown;
readonly margin?: unknown;
readonly background?: unknown;
readonly type?: unknown;
} & {
type: DividerType;
background: string;
color: string;
fontColor: string;
vertical: boolean;
position: DividerPositionType;
margin: string;
} & {}>, {
type: DividerType;
background: string;
color: string;
fontColor: string;
vertical: boolean;
position: DividerPositionType;
margin: string;
}>;
export default _sfc_main;