interface IRunParams {
    groupKey?: string;
    http: AxiosInstance;
    logEvent: ((...params) => void);
    normalApi: NormalRpcService;
    sleep(time): Promise<void>;
}

Properties

groupKey?: string

groupKey for this invocation of the hook (will be empty string if no grouping config)

http: AxiosInstance

an Axios http client for accessing http resources.

logEvent: ((...params) => void)

Type declaration

    • (...params): void
    • write to the event log. This message will show up the in integrated console and also in the run logs.

      Parameters

      • Rest ...params: string[]

      Returns void

normalApi: NormalRpcService

Deprecated

use http client instead

Methods

  • pause execution for given time (in milliseconds)

    Parameters

    • time: number

    Returns Promise<void>

Generated using TypeDoc