Type Alias InvokeFetchProperties

type InvokeFetchProperties = {
    body?: unknown;
    contentType?: string;
    method: string;
    options?: ApiCallOptions;
    pathTemplate: string;
    pathVariables?: Record<string, string>;
    query?: Record<string, unknown>;
    requestInitOverrides?: RequestInit;
    userAgent?: string;
}
Index

Properties

body?: unknown
contentType?: string
method: string

http method

options?: ApiCallOptions
pathTemplate: string
pathVariables?: Record<string, string>
query?: Record<string, unknown>
requestInitOverrides?: RequestInit
userAgent?: string