Requesters make the requests and return a responses.

interface Requester {
    addHeaders(headers): void;
    get(url): Promise<Response>;
}

Implemented by

Methods

Methods

  • Set the request headers

    Parameters

    • headers: OutgoingHttpHeaders | HeadersInit

      request headers

    Returns void

  • GET the Parameter or Secret

    Parameters

    • url: string

      the localhost url endpoint for the Parameter or Secret

    Returns Promise<Response>

Generated using TypeDoc