t-fighting-design
Version:
Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.
34 lines (33 loc) • 1.21 kB
TypeScript
import type { ButtonGroupSizeType } from './interface';
import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComputedRef } from 'vue';
import type { ClassListInterface as a } from '../../_interface';
declare const _sfc_main: DefineComponent<{
readonly size: {
readonly type: PropType<ButtonGroupSizeType>;
readonly default: () => ButtonGroupSizeType;
readonly validator: (val: ButtonGroupSizeType) => boolean;
};
readonly vertical: {
readonly type: BooleanConstructor;
readonly default: () => boolean;
};
}, {
prop: {
readonly size?: unknown;
readonly vertical?: unknown;
} & {
size: ButtonGroupSizeType;
vertical: boolean;
} & {};
classList: ComputedRef<a>;
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
readonly size?: unknown;
readonly vertical?: unknown;
} & {
size: ButtonGroupSizeType;
vertical: boolean;
} & {}>, {
size: ButtonGroupSizeType;
vertical: boolean;
}>;
export default _sfc_main;