api-def API Reference
    Preparing search index...

    Type Alias EndpointBuildOptions<TResponse, TParams, TQuery, TBody, TState, TRequestHeaders, TResponseHeaders, TPath, TResponseType>

    EndpointBuildOptions: Omit<
        EndpointOptions<
            TResponse,
            TParams,
            TQuery,
            TBody,
            TState,
            TPath,
            TRequestHeaders,
            TResponseHeaders,
        >,
        "validation",
    > & { responseType?: TResponseType }

    Type Parameters

    • TResponse = unknown
    • TParams extends Params | undefined = undefined
    • TQuery extends Query | undefined = undefined
    • TBody extends Body | undefined = undefined
    • TState extends State = State
    • TRequestHeaders extends RawHeaders | undefined = RawHeaders | undefined
    • TResponseHeaders extends RawHeaders | undefined = RawHeaders | undefined
    • TPath extends string = string
    • TResponseType extends ResponseType | undefined = undefined