keep-vue
Version:
Keep Vue is an open-source component library built on top of Vue3 and Tailwind CSS. It offers a collection of pre-designed UI components and styles that you can easily integrate into your web applications.
20 lines (19 loc) • 883 B
TypeScript
import type { InputHTMLAttributes } from "vue";
import type { ClassProps } from "../../utils/interface";
export interface NumberInputBoxProps extends /* @vue-ignore*/ InputHTMLAttributes {
min?: number;
max?: number;
}
declare let __VLS_typeProps: NumberInputBoxProps & ClassProps;
type __VLS_PublicProps = {
modelValue?: number;
} & typeof __VLS_typeProps;
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:modelValue": (modelValue: number) => any;
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onUpdate:modelValue"?: ((modelValue: number) => any) | undefined;
}>, {
max: number;
min: number;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;