summaryrefslogtreecommitdiff
path: root/ext/cache
diff options
context:
space:
mode:
authorJo Franchetti <jofranchetti@gmail.com>2024-05-06 02:56:55 +0100
committerGitHub <noreply@github.com>2024-05-05 18:56:55 -0700
commita69b4646a02dc49a9222cd50c49d3e194f320ff2 (patch)
tree9a86aaba36d72341d0742b2dafc587ef10d7a14c /ext/cache
parent397be1a22c4e1666bc496af01acb72de0403e695 (diff)
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
Diffstat (limited to 'ext/cache')
-rw-r--r--ext/cache/lib.deno_cache.d.ts12
1 files changed, 6 insertions, 6 deletions
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 @@
/// <reference no-default-lib="true" />
/// <reference lib="esnext" />
-/** @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<Cache>;
@@ -18,7 +18,7 @@ declare interface CacheStorage {
delete(cacheName: string): Promise<boolean>;
}
-/** @category Cache API */
+/** @category Cache */
declare interface Cache {
/**
* Put the provided request/response into the cache.
@@ -52,19 +52,19 @@ declare interface Cache {
): Promise<boolean>;
}
-/** @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;