diff options
Diffstat (limited to 'cli/js/lib.deno.shared_globals.d.ts')
-rw-r--r-- | cli/js/lib.deno.shared_globals.d.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/js/lib.deno.shared_globals.d.ts b/cli/js/lib.deno.shared_globals.d.ts index 9ec045a8e..ea8bf08ec 100644 --- a/cli/js/lib.deno.shared_globals.d.ts +++ b/cli/js/lib.deno.shared_globals.d.ts @@ -503,11 +503,11 @@ declare namespace __domTypes { readonly total: number; } export interface EventListenerOptions { - capture: boolean; + capture?: boolean; } export interface AddEventListenerOptions extends EventListenerOptions { - once: boolean; - passive: boolean; + once?: boolean; + passive?: boolean; } interface AbortSignal extends EventTarget { readonly aborted: boolean; |