Interface for the Countdown component props.

interface ICountdownProps {
    children?: any;
    expireAt: string | number | Date;
    onExpire?: () => void;
}

Hierarchy (View Summary)

Properties

children?: any
expireAt: string | number | Date
onExpire?: () => void