mirror of
https://github.com/denoland/deno.git
synced 2025-02-01 12:16:11 -05:00
update after @lucacasonato comments
This commit is contained in:
parent
50513ef2b2
commit
443e877ab8
2 changed files with 33 additions and 40 deletions
3
ext/cache/lib.deno_cache.d.ts
vendored
3
ext/cache/lib.deno_cache.d.ts
vendored
|
@ -30,8 +30,7 @@ declare interface CacheStorage {
|
|||
}
|
||||
|
||||
/**
|
||||
* Provides a persistent storage mechanism for Request / Response object pairs
|
||||
* that are cached in long lived memory.
|
||||
* Provides a storage mechanism for Request / Response object pairs
|
||||
*
|
||||
* @category Cache
|
||||
*/
|
||||
|
|
10
ext/web/lib.deno_web.d.ts
vendored
10
ext/web/lib.deno_web.d.ts
vendored
|
@ -231,10 +231,7 @@ declare type EventListenerOrEventListenerObject =
|
|||
| EventListener
|
||||
| EventListenerObject;
|
||||
|
||||
/** adds three more optional properties to those inherited from
|
||||
* EventListenerOptions.
|
||||
*
|
||||
* @category Events */
|
||||
/** @category Events */
|
||||
declare interface AddEventListenerOptions extends EventListenerOptions {
|
||||
/** When set to true, indicates that the event listener should be automatically removed after its first invocation. */
|
||||
passive?: boolean;
|
||||
|
@ -1339,10 +1336,7 @@ declare interface ImageData {
|
|||
readonly width: number;
|
||||
}
|
||||
|
||||
/** Work with image data, create new image data objects or manipulate existing
|
||||
* pixel data.
|
||||
*
|
||||
* @category Platform */
|
||||
/** @category Platform */
|
||||
declare var ImageData: {
|
||||
prototype: ImageData;
|
||||
new(sw: number, sh: number, settings?: ImageDataSettings): ImageData;
|
||||
|
|
Loading…
Add table
Reference in a new issue