vva-cli
Version:
A CLI of Vue 3 and Typescript and Element-plus in Vite
14 lines (13 loc) • 328 B
TypeScript
import { BtnType, ComponentSize } from "helper/types";
export declare interface OperateBtn {
cmd: string;
label?: string;
type?: BtnType;
round?: boolean;
plain?: boolean;
class?: string | { [key: string]: string };
style?: string | {};
icon?: string;
size?: ComponentSize;
position?: string;
}