OINO TS
    Preparing search index...

    Interface OINOHttpRequestInit

    interface OINOHttpRequestInit {
        body?:
            | string
            | object
            | Buffer<ArrayBufferLike>
            | Uint8Array<ArrayBufferLike>;
        headers?: OINOHeadersInit;
        lastModified?: number;
        method?: string;
        multipartBoundary?: string;
        params?: Record<string, string>;
        requestType?: OINOContentType;
        responseType?: OINOContentType;
        url?: URL;
    }

    Hierarchy (View Summary)

    Index

    Properties

    body?: string | object | Buffer<ArrayBufferLike> | Uint8Array<ArrayBufferLike>
    headers?: OINOHeadersInit
    lastModified?: number
    method?: string
    multipartBoundary?: string
    params?: Record<string, string>
    requestType?: OINOContentType
    responseType?: OINOContentType
    url?: URL