mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
16 lines
429 B
Text
16 lines
429 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content of this file was automatically extracted from the
|
|
// "Worklets Level 1" spec.
|
|
// See: 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";
|
|
};
|