diff options
author | Yacine Hmito <yacinehmito@users.noreply.github.com> | 2021-01-09 07:27:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-09 07:27:46 +0100 |
commit | 96372097657685b5655bba95ce5a329364a9301b (patch) | |
tree | 7f0fda60e9cdad0c4a4862e86f8c1e45e3f92f82 /op_crates/web/lib.deno_web.d.ts | |
parent | f3ead9c6a7184d2b592f018795f73d34399a9c83 (diff) |
fix(web): implement DOMException#code (#9015)
Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
Diffstat (limited to 'op_crates/web/lib.deno_web.d.ts')
-rw-r--r-- | op_crates/web/lib.deno_web.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/op_crates/web/lib.deno_web.d.ts b/op_crates/web/lib.deno_web.d.ts index 491a0ee84..f6c2e240f 100644 --- a/op_crates/web/lib.deno_web.d.ts +++ b/op_crates/web/lib.deno_web.d.ts @@ -9,6 +9,7 @@ declare class DOMException extends Error { constructor(message?: string, name?: string); readonly name: string; readonly message: string; + readonly code: number; } interface EventInit { |