UNPKG

antd

Version:

An enterprise-class UI design language and React-based implementation

24 lines (23 loc) 731 B
import * as React from 'react'; export interface BackTopProps { visibilityHeight?: number; onClick?: React.MouseEventHandler<any>; target?: () => HTMLElement | Window; prefixCls?: string; className?: string; style?: React.CSSProperties; } export default class BackTop extends React.Component<BackTopProps, any> { static defaultProps: { visibilityHeight: number; }; scrollEvent: any; constructor(props: BackTopProps); getCurrentScrollTop: () => number; scrollToTop: (e: React.MouseEvent<HTMLDivElement>) => void; setScrollTop(value: number): void; handleScroll: () => void; componentDidMount(): void; componentWillUnmount(): void; render(): JSX.Element; }