mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 04:51:22 +00:00
f0a3d20642
proceed with #23921 This PR is a preparation for https://github.com/denoland/deno_lint/pull/1307 --------- Signed-off-by: Kenta Moriuchi <moriken@kimamass.com> Co-authored-by: Luca Casonato <hello@lcas.dev> |
||
---|---|---|
.. | ||
benches | ||
00_webidl.js | ||
Cargo.toml | ||
internal.d.ts | ||
lib.rs | ||
README.md |
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