pokemon-rogue-battle
    Preparing search index...

    Class ApiBaseAbstract

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    base: string
    ERR_GENERIC: string = "There was an error"

    Methods

    • A generic request helper.

      Parameters

      • path: string

        The path to send the request to.

      • config: RequestInit

        The request RequestInit | Configuration.

      Returns Promise<Response>

    • Send a GET request.

      Parameters

      • path: string

        The path to send the request to.

      Returns Promise<Response>

    • Send a POST request.

      Type Parameters

      • D = undefined

      Parameters

      • path: string

        THe path to send the request to.

      • OptionalbodyData: D

        The body-data to send.

      • dataType: DataType = "json"

        The data-type of the bodyData.

      Returns Promise<Response>

    • Helper to transform data to URLSearchParams Any key with a value of undefined will be ignored. Any key with a value of null will be included.

      Type Parameters

      • D extends Record<string, any>

      Parameters

      • data: D

        the data to transform to URLSearchParams

      Returns URLSearchParams

      a URLSearchParams representaton of data