mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 20:29:11 +00:00
chore: add code generation for @types/deno (#25545)
This commit is contained in:
parent
e1c8d2755e
commit
33f169beb9
19 changed files with 485 additions and 356 deletions
6
ext/cache/lib.deno_cache.d.ts
vendored
6
ext/cache/lib.deno_cache.d.ts
vendored
|
@ -9,7 +9,7 @@
|
|||
declare var caches: CacheStorage;
|
||||
|
||||
/** @category Cache */
|
||||
declare interface CacheStorage {
|
||||
interface CacheStorage {
|
||||
/** Open a cache storage for the provided name. */
|
||||
open(cacheName: string): Promise<Cache>;
|
||||
/** Check if cache already exists for the provided name. */
|
||||
|
@ -19,7 +19,7 @@ declare interface CacheStorage {
|
|||
}
|
||||
|
||||
/** @category Cache */
|
||||
declare interface Cache {
|
||||
interface Cache {
|
||||
/**
|
||||
* Put the provided request/response into the cache.
|
||||
*
|
||||
|
@ -65,7 +65,7 @@ declare var CacheStorage: {
|
|||
};
|
||||
|
||||
/** @category Cache */
|
||||
declare interface CacheQueryOptions {
|
||||
interface CacheQueryOptions {
|
||||
ignoreMethod?: boolean;
|
||||
ignoreSearch?: boolean;
|
||||
ignoreVary?: boolean;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue