kinetex - v1.0.0-rc.1
    Preparing search index...

    Type Alias BodyInit

    BodyInit:
        | string
        | Uint8Array
        | ArrayBuffer
        | ArrayBufferView
        | ReadableStream<Uint8Array>
        | URLSearchParams
        | FormData
        | Blob
        | null

    Request body types accepted by kinetex. Compatible with the Fetch API's BodyInit.

    Note: null is a valid body value indicating no body should be sent. This is different from undefined which means "use default". All request builders handle null correctly by omitting the body from the fetch call.