0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-02 04:38:21 -05:00
denoland-deno/ext/webidl
denobot e842e5a59f
2.1.5 (#27611)
Co-authored-by: dsherret <dsherret@users.noreply.github.com>
2025-01-09 15:27:39 -05:00
..
benches chore: Happy New Year 2025 (#27509) 2025-01-09 15:19:16 -05:00
00_webidl.js chore: Happy New Year 2025 (#27509) 2025-01-09 15:19:16 -05:00
Cargo.toml 2.1.5 (#27611) 2025-01-09 15:27:39 -05:00
internal.d.ts chore: Happy New Year 2025 (#27509) 2025-01-09 15:19:16 -05:00
lib.rs chore: Happy New Year 2025 (#27509) 2025-01-09 15:19:16 -05:00
README.md docs: Add documentation to a subset of available extensions (#24138) 2024-06-18 00:07:48 +02:00

deno_webidl

This crate implements WebIDL for Deno. It consists of infrastructure to do ECMA -> WebIDL conversions.

Spec: https://webidl.spec.whatwg.org/

Usage Example

From javascript, include the extension's source, and assign the following to the global scope:

import * as webidl from "ext:deno_webidl/00_webidl.js";
Object.defineProperty(globalThis, webidl.brand, {
  value: webidl.brand,
  enumerable: false,
  configurable: true,
  writable: true,
});

Then from rust, provide init_webidl::init_webidl::init_ops_and_esm() in the extensions field of your RuntimeOptions