From a69b4646a02dc49a9222cd50c49d3e194f320ff2 Mon Sep 17 00:00:00 2001 From: Jo Franchetti Date: Mon, 6 May 2024 02:56:55 +0100 Subject: docs: update categories to match new planned sitemap (#23677) Updating categories for new sitemap as documented here: https://lucid.app/lucidspark/744b0498-a133-494d-981c-76059dd18885/edit?view_items=jpvBwFdYlNdB&invitationId=inv_50c83415-2aa5-423f-b438-ea156695c08b --- ext/cache/lib.deno_cache.d.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'ext/cache') diff --git a/ext/cache/lib.deno_cache.d.ts b/ext/cache/lib.deno_cache.d.ts index 409ca2c0c..f28de94ce 100644 --- a/ext/cache/lib.deno_cache.d.ts +++ b/ext/cache/lib.deno_cache.d.ts @@ -5,10 +5,10 @@ /// /// -/** @category Cache API */ +/** @category Cache */ declare var caches: CacheStorage; -/** @category Cache API */ +/** @category Cache */ declare interface CacheStorage { /** Open a cache storage for the provided name. */ open(cacheName: string): Promise; @@ -18,7 +18,7 @@ declare interface CacheStorage { delete(cacheName: string): Promise; } -/** @category Cache API */ +/** @category Cache */ declare interface Cache { /** * Put the provided request/response into the cache. @@ -52,19 +52,19 @@ declare interface Cache { ): Promise; } -/** @category Cache API */ +/** @category Cache */ declare var Cache: { readonly prototype: Cache; new (): never; }; -/** @category Cache API */ +/** @category Cache */ declare var CacheStorage: { readonly prototype: CacheStorage; new (): never; }; -/** @category Cache API */ +/** @category Cache */ declare interface CacheQueryOptions { ignoreMethod?: boolean; ignoreSearch?: boolean; -- cgit v1.2.3