UNPKG

jamis

Version:

一种支持通过JSON配置方式生成页面的组件库

15 lines (14 loc) 426 B
import type { CSSProperties } from 'react'; import React from 'react'; interface BackTopProps { onClick: () => void; className?: string; style?: CSSProperties; } export type BackTopRef = React.RefObject<{ toggle: (forceHidden?: boolean) => void; }>; export declare const BackTop: React.ForwardRefExoticComponent<BackTopProps & React.RefAttributes<{ toggle: (forceHidden?: boolean) => void; }>>; export {};