api-def API Reference
    Preparing search index...

    Class Api

    Implements

    Index
    delete: <R = unknown>(
        path: string | URL,
        config: RequestConfig,
    ) => Promise<ApiResponse<R>> = ...
    endpoints: Record<string, Endpoint> = {}
    get: <R = unknown>(
        path: string | URL,
        config: RequestConfig,
    ) => Promise<ApiResponse<R>> = ...
    patch: <R = unknown>(
        path: string | URL,
        config: RequestConfig,
    ) => Promise<ApiResponse<R>> = ...

    post

    post: <R = unknown>(
        path: string | URL,
        config: RequestConfig,
    ) => Promise<ApiResponse<R>> = ...
    put: <R = unknown>(
        path: string | URL,
        config: RequestConfig,
    ) => Promise<ApiResponse<R>> = ...