Package version:

Model representing a http get request.

interface HttpGet {
    fileName?: string;
    headers?: string[];
    url: string;
}

Properties

fileName?: string

Name of the file that the request should be saved to.

headers?: string[]

List of headers to send with the request.

url: string

URL to make HTTP GET request against.