Props for withTimeout function.

interface Props {
    timerRef: MutableRefObject<undefined | Timeout>;
    callback(): any;
    timeout?: number;
}

Methods

Properties

Methods

Properties

timerRef: MutableRefObject<undefined | Timeout>

Reference to a timer.

timeout?: number

How long to postpone a timeout.