Type Alias PostTextParams<T>

PostTextParams<T>: {
    body: string;
    contentType: TextContentType;
    options?: RequestInit;
    schema?: z.ZodSchema<T>;
    urlBuilder: URLBuilder;
}

Type for POST text parameters

Type Parameters

  • T

    The type of the response