client.delete
client.delete
client.delete(...options) : Promise<Response> : throwsThis method is available by default, but can be disable. The delete() method will start a HTTP DELETE request, using fetch(), with the given options. It will return a Promisehttps://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise which resolves in a Response on success.
This method is fully backwards compatible with the fetch() method, except the HTTP method is fixed to DELETE.