UNPKG

341 BTypeScriptView Raw
1/// <reference types="react" />
2export interface UnitNumberProps {
3 prefixCls: string;
4 value: string | number;
5 offset?: number;
6 current?: boolean;
7}
8export interface SingleNumberProps {
9 prefixCls: string;
10 value: string;
11 count: number;
12}
13export default function SingleNumber(props: SingleNumberProps): JSX.Element;