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.
14 lines
341 B
14 lines
341 B
/// <reference types="react" />
|
|
export interface UnitNumberProps {
|
|
prefixCls: string;
|
|
value: string | number;
|
|
offset?: number;
|
|
current?: boolean;
|
|
}
|
|
export interface SingleNumberProps {
|
|
prefixCls: string;
|
|
value: string;
|
|
count: number;
|
|
}
|
|
export default function SingleNumber(props: SingleNumberProps): JSX.Element;
|