Saltar al contenido principal

Function: useDelete()

useDelete<T>(apiName, endpointName, urlOptions?): Promise<FetchResult<T>>

Defined in: src/core/services/http.service.ts:543

DELETE helper over a registered API endpoint.

Type Parameters

T

T = unknown

Parameters

apiName

string

The registered API key.

endpointName

string

The endpoint key within the API.

urlOptions?

UrlOptions

Optional URL building options.

Returns

Promise<FetchResult<T>>

A FetchResult with data or error.

Example

import { useDelete } from "katanakit-js";

const result = await useDelete("pokeapi", "deletePokemon", { params: { id: 25 } });