mirror of
https://github.com/servo/servo.git
synced 2025-07-11 17:33:47 +01:00
16 lines
475 B
Text
16 lines
475 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: Worklets Level 1 (https://drafts.css-houdini.org/worklets/)
|
|
|
|
[Exposed=Worklet]
|
|
interface WorkletGlobalScope {
|
|
};
|
|
|
|
interface Worklet {
|
|
[NewObject] Promise<void> addModule(USVString moduleURL, optional WorkletOptions options);
|
|
};
|
|
|
|
dictionary WorkletOptions {
|
|
RequestCredentials credentials = "same-origin";
|
|
};
|