UNPKG

various-ui

Version:

This is a test version of the Vue 3 component library

18 lines (17 loc) 516 B
import { ExtractPropTypes, PropType } from "vue"; export declare const UiSimplebarPropsOption: { readonly height: { readonly type: PropType<string | number>; }; readonly spacing: { readonly type: NumberConstructor; readonly default: 2; }; readonly trigger: { readonly type: PropType<"Hover">; }; }; export type UiSimplebarProps = ExtractPropTypes<typeof UiSimplebarPropsOption>; export declare const UiSimplebarEmits: { scroll: (_ev: Event) => boolean; };