UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

23 lines (21 loc) 787 B
import { ExtractPropTypes, PropType } from 'vue'; import { ComicSize } from '../../../utils'; export declare const inputNumberProps: { readonly modelValue: NumberConstructor; readonly size: PropType<ComicSize>; readonly min: NumberConstructor; readonly max: NumberConstructor; readonly step: { readonly type: NumberConstructor; readonly default: 1; }; readonly disabled: BooleanConstructor; }; export type InputNumberProps = ExtractPropTypes<typeof inputNumberProps>; export declare const inputNumberEmits: { "update:modelValue": (value: number) => boolean; change: (value: number) => boolean; blur: (evt: FocusEvent) => boolean; focus: (evt: FocusEvent) => boolean; }; export type InputNumberEmits = typeof inputNumberEmits;