zview-plus
Version:
基于 Vue3 的 UI 组件库
25 lines (24 loc) • 615 B
TypeScript
import { ExtractPropTypes } from "vue";
export declare const ButtonType: string[];
export declare const ButtonSize: string[];
export declare const ButtonProps: {
type: {
type: StringConstructor;
values: string[];
};
size: {
type: StringConstructor;
values: string[];
};
plain: BooleanConstructor;
round: BooleanConstructor;
disabled: {
type: BooleanConstructor;
default: boolean;
};
icon: {
type: StringConstructor;
default: string;
};
};
export declare type ButtonProps = ExtractPropTypes<typeof ButtonProps>;