CacheStorage.deleteEntryDeletes a cache entry.
| Name | Type | Description |
|---|---|---|
cacheId | CacheId | Id of cache where the entry will be deleted. |
request | string | URL spec of the request. |
{
"id": 1,
"method": "CacheStorage.deleteEntry",
"params": {
"cacheId": "cacheId-value",
"request": "request-value"
}
}
{
"id": 1,
"result": {}
}
const result = await send('CacheStorage.deleteEntry', {"cacheId": "cacheId-value", "request": "request-value"});
console.log(result);