UNPKG

various-ui

Version:

This is a test version of the Vue 3 component library

29 lines (28 loc) 825 B
import { ExtractPropTypes } from "vue"; export declare const UiPaginationPropsOption: { readonly skip: { readonly type: NumberConstructor; readonly default: 2; }; readonly count: { readonly type: NumberConstructor; readonly required: true; }; readonly items: { readonly type: BooleanConstructor; readonly default: true; }; readonly limit: { readonly type: NumberConstructor; readonly default: 10; }; readonly modelValue: { readonly type: NumberConstructor; readonly required: true; }; }; export type UiPaginationProps = ExtractPropTypes<typeof UiPaginationPropsOption>; export declare const UiPaginationEmits: { "update:modelValue": (key: number) => boolean; change: (key?: number) => boolean; };