diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-06-07 10:04:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-07 10:04:10 +0200 |
commit | 3a4a47799fe395a4ceb253c394724f54192150d2 (patch) | |
tree | e1b801543101d28d4352794faa26b2dc65f04670 /extensions/webidl/internal.d.ts | |
parent | 3b220c64f615a4e18346e8a1c07ad7b1aae9fcc6 (diff) |
refactor: clean up webidl protype configuration (#10871)
Diffstat (limited to 'extensions/webidl/internal.d.ts')
-rw-r--r-- | extensions/webidl/internal.d.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/extensions/webidl/internal.d.ts b/extensions/webidl/internal.d.ts index ca72566a5..2d23f0ed2 100644 --- a/extensions/webidl/internal.d.ts +++ b/extensions/webidl/internal.d.ts @@ -298,6 +298,11 @@ declare namespace globalThis { keyKey: string | number | symbol, valueKey: string | number | symbol, ): void; + + /** + * Configure prototype properties enumerability / writability / configurability. + */ + declare function configurePrototype(prototype: any); } } } |