chore: add code generation for @types/deno (#25545)

This commit is contained in:
David Sherret 2024-09-23 15:18:52 -04:00 committed by GitHub
parent e1c8d2755e
commit 33f169beb9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 485 additions and 356 deletions

View file

@ -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;