@mydoge/y-ui
Version:
15 lines (14 loc) • 419 B
TypeScript
import { ExtractPropTypes } from 'vue';
export declare const ButtonType: string[];
export declare const ButtonSize: string[];
export declare const buttonProps: {
type: {
type: StringConstructor;
validator(value: string): boolean;
};
size: {
type: StringConstructor;
validator(value: string): boolean;
};
};
export type ButtonProps = ExtractPropTypes<typeof buttonProps>;