0
0
Fork 0
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:
Jo Franchetti 2024-06-27 15:24:54 +01:00
parent 50513ef2b2
commit 443e877ab8
2 changed files with 33 additions and 40 deletions

View file

@ -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
*/

View file

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