mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
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
This commit is contained in:
parent
397be1a22c
commit
a69b4646a0
17 changed files with 550 additions and 550 deletions
12
ext/cache/lib.deno_cache.d.ts
vendored
12
ext/cache/lib.deno_cache.d.ts
vendored
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue