UNPKG

tyh-ui2

Version:

The next generation ui component library of tyh-ui is based on vue3 Version, fully embrace vue3.

22 lines (21 loc) 646 B
import { PropType } from 'vue'; import type { backTopBehavior } from './interface'; export declare const Props: { readonly bottom: { readonly type: StringConstructor; readonly default: () => string; }; readonly right: { readonly type: StringConstructor; readonly default: () => string; }; readonly beyond: { readonly type: NumberConstructor; readonly default: () => number; }; readonly behavior: { readonly type: PropType<backTopBehavior>; readonly default: () => backTopBehavior; readonly validator: (val: backTopBehavior) => boolean; }; };