Type Alias PostJsonParams<T>

PostJsonParams<T>: {
    body: Record<string, unknown>;
    contentType: JsonContentType;
    options?: RequestInit;
    schema?: z.ZodSchema<T>;
    urlBuilder: URLBuilder;
}

Type for POST JSON parameters

Type Parameters

  • T

    The type of the response