UNPKG

451 BTypeScriptView Raw
1import * as React from 'react';
2export interface BackTopProps {
3 visibilityHeight?: number;
4 onClick?: React.MouseEventHandler<HTMLElement>;
5 target?: () => HTMLElement | Window | Document;
6 prefixCls?: string;
7 children?: React.ReactNode;
8 className?: string;
9 style?: React.CSSProperties;
10 duration?: number;
11 visible?: boolean;
12}
13declare const _default: React.NamedExoticComponent<BackTopProps>;
14export default _default;