amis-rpc-design/node_modules/antd/lib/statistic/Countdown.d.ts

12 lines
392 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
import * as React from 'react';
import type { StatisticProps } from './Statistic';
import type { valueType } from './utils';
export interface CountdownProps extends StatisticProps {
value?: valueType;
format?: string;
onFinish?: () => void;
onChange?: (value?: valueType) => void;
}
declare const _default: React.NamedExoticComponent<CountdownProps>;
export default _default;