UNPKG

sard-uniapp

Version:

sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库

18 lines (17 loc) 494 B
import { type StyleValue } from 'vue'; import { type DefaultProps } from '../config'; export interface BackTopProps { rootStyle?: StyleValue; rootClass?: string; scrollTop?: number; visibleHeight?: number; right?: string; bottom?: string; } export declare const defaultBackTopProps: () => DefaultProps<BackTopProps>; export interface BackTopSlots { default?(props: Record<string, never>): any; } export interface BackTopEmits { (e: 'click', event: any): void; }