8 lines
367 B
Plaintext
8 lines
367 B
Plaintext
export declare type ButtonType = "primary" | "normal" | "warm" | "danger";
|
|
export declare type ButtonSize = "lg" | "md" | "sm" | "xs";
|
|
export declare type ButtonBorder = "green" | "blue" | "orange" | "red" | "black";
|
|
export declare type ButtonNativeType = "button" | "submit" | "reset";
|
|
export declare const ButtonEmits: {
|
|
click: (evt: MouseEvent) => boolean;
|
|
};
|