UNPKG

@archway-kit/vue

Version:

Vue components to interact with the Archway network

39 lines (38 loc) 1.29 kB
import { MaybeArray } from '@archway-kit/utils'; type Props = { modelValue?: MaybeArray<number | string>; min?: number; max?: number; height?: number; dotSize?: number; contained?: boolean; disabled?: boolean; }; declare function __VLS_template(): { slots: { dot?(_: any): any; label?(_: any): any; mark?(_: any): any; process?(_: any): any; step?(_: any): any; tooltip?(_: any): any; }; refs: {}; attrs: Partial<{}>; }; type __VLS_TemplateResult = ReturnType<typeof __VLS_template>; declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: MaybeArray<number>) => any; }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{ "onUpdate:modelValue"?: ((value: MaybeArray<number>) => any) | undefined; }>, { dotSize: number; contained: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>; export default _default; type __VLS_WithTemplateSlots<T, S> = T & { new (): { $slots: S; }; };