tass-ui
Version:
A high quality UI Toolkit built on Vue.js3+.
15 lines (11 loc) • 459 B
TypeScript
/*
* @Description: Stay hungry,Stay foolish
* @Author: Huccct
* @Date: 2023-01-21 11:58:09
* @LastEditors: Huccct
* @LastEditTime: 2023-01-21 11:58:14
*/
import type { ButtonHTMLAttributes } from 'vue';
export type ButtonSizeType = 'default' | 'medium' | 'small' | 'mini' | 'tiny';
export type ButtonType = 'default' | 'primary' | 'success' | 'info' | 'danger' | 'warning';
export type ButtonNativeType = NonNullable<ButtonHTMLAttributes['type']>;