File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20096,7 +20096,7 @@ type Transport = "usb" | "nfc" | "ble";
20096
20096
type UserVerificationRequirement = "required" | "preferred" | "discouraged";
20097
20097
type VRDisplayEventReason = "mounted" | "navigation" | "requested" | "unmounted";
20098
20098
type VideoFacingModeEnum = "user" | "environment" | "left" | "right";
20099
- type VisibilityState = "hidden" | "visible" | "prerender" ;
20099
+ type VisibilityState = "hidden" | "visible";
20100
20100
type WebGLPowerPreference = "default" | "low-power" | "high-performance";
20101
20101
type WorkerType = "classic" | "module";
20102
20102
type XMLHttpRequestResponseType = "" | "arraybuffer" | "blob" | "document" | "json" | "text";
Original file line number Diff line number Diff line change @@ -5855,7 +5855,7 @@ type RequestRedirect = "follow" | "error" | "manual";
5855
5855
type ResponseType = "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect" ;
5856
5856
type ServiceWorkerState = "installing" | "installed" | "activating" | "activated" | "redundant" ;
5857
5857
type ServiceWorkerUpdateViaCache = "imports" | "all" | "none" ;
5858
- type VisibilityState = "hidden" | "visible" | "prerender" ;
5858
+ type VisibilityState = "hidden" | "visible" ;
5859
5859
type WebGLPowerPreference = "default" | "low-power" | "high-performance" ;
5860
5860
type WorkerType = "classic" | "module" ;
5861
5861
type XMLHttpRequestResponseType = "" | "arraybuffer" | "blob" | "document" | "json" | "text" ;
Original file line number Diff line number Diff line change 1
1
enum VisibilityState {
2
- "hidden", "visible", "prerender"
2
+ "hidden", "visible"
3
3
};
4
4
5
5
partial interface Document {
You can’t perform that action at this time.
0 commit comments