Latest updates from IceHrmPro
This commit is contained in:
22
web/node_modules/antd/lib/statistic/Countdown.d.ts
generated
vendored
Normal file
22
web/node_modules/antd/lib/statistic/Countdown.d.ts
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
import * as React from 'react';
|
||||
import { StatisticProps } from './Statistic';
|
||||
import { countdownValueType, FormatConfig } from './utils';
|
||||
interface CountdownProps extends StatisticProps {
|
||||
value?: countdownValueType;
|
||||
format?: string;
|
||||
onFinish?: () => void;
|
||||
}
|
||||
declare class Countdown extends React.Component<CountdownProps, {}> {
|
||||
static defaultProps: Partial<CountdownProps>;
|
||||
countdownId?: number;
|
||||
componentDidMount(): void;
|
||||
componentDidUpdate(): void;
|
||||
componentWillUnmount(): void;
|
||||
syncTimer: () => void;
|
||||
startTimer: () => void;
|
||||
stopTimer: () => void;
|
||||
formatCountdown: (value: React.ReactText, config: FormatConfig) => string;
|
||||
valueRender: (node: React.ReactElement<HTMLDivElement, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>) => React.ReactElement<HTMLDivElement, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>;
|
||||
render(): JSX.Element;
|
||||
}
|
||||
export default Countdown;
|
||||
Reference in New Issue
Block a user