Crates.io | deno_webidl |
lib.rs | deno_webidl |
version | 0.177.0 |
source | src |
created_at | 2021-03-12 20:55:43.67695 |
updated_at | 2024-11-10 04:40:34.037972 |
description | WebIDL implementation for Deno |
homepage | |
repository | https://github.com/denoland/deno |
max_upload_size | |
id | 367915 |
size | 48,689 |
This crate implements WebIDL for Deno. It consists of infrastructure to do ECMA -> WebIDL conversions.
Spec: https://webidl.spec.whatwg.org/
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