Pre/Post-Processor parameters.

interface ProcessorParams {
    options: RequestOptions;
    proxyAppended?: boolean;
    url: string;
    [additionalKey: string]: any;
}

Indexable

  • [additionalKey: string]: any

    Processors may add flags to the parameters to communicate state changes.

Properties

Request options.

proxyAppended?: boolean

Flag which indicates that the url was wrapped into a proxy url.

url: string

URL to request.