You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
522 B
18 lines
522 B
import * as React from 'react';
|
|
export interface ScrollNumberProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
count?: string | number | null;
|
|
displayComponent?: React.ReactElement<HTMLElement>;
|
|
component?: string;
|
|
onAnimated?: Function;
|
|
style?: React.CSSProperties;
|
|
title?: string | number | null;
|
|
}
|
|
export interface ScrollNumberState {
|
|
animateStarted?: boolean;
|
|
count?: string | number | null;
|
|
}
|
|
declare const ScrollNumber: React.FC<ScrollNumberProps>;
|
|
export default ScrollNumber;
|