@@ -1101,6 +1101,10 @@ interface PermissionDescriptor {
1101
1101
name: PermissionName;
1102
1102
}
1103
1103
1104
+ interface PictureInPictureEventInit extends EventInit {
1105
+ pictureInPictureWindow: PictureInPictureWindow;
1106
+ }
1107
+
1104
1108
interface PointerEventInit extends MouseEventInit {
1105
1109
coalescedEvents?: PointerEvent[];
1106
1110
height?: number;
@@ -1977,6 +1981,7 @@ declare var AbortSignal: {
1977
1981
prototype: AbortSignal;
1978
1982
new(): AbortSignal;
1979
1983
abort(reason?: any): AbortSignal;
1984
+ timeout(milliseconds: number): AbortSignal;
1980
1985
};
1981
1986
1982
1987
interface AbstractRange {
@@ -2362,6 +2367,8 @@ declare var AuthenticatorAssertionResponse: {
2362
2367
/** Available only in secure contexts. */
2363
2368
interface AuthenticatorAttestationResponse extends AuthenticatorResponse {
2364
2369
readonly attestationObject: ArrayBuffer;
2370
+ getAuthenticatorData(): ArrayBuffer;
2371
+ getTransports(): string[];
2365
2372
}
2366
2373
2367
2374
declare var AuthenticatorAttestationResponse: {
@@ -4524,6 +4531,7 @@ interface Document extends Node, DocumentAndElementEventHandlers, DocumentOrShad
4524
4531
createEvent(eventInterface: "PageTransitionEvent"): PageTransitionEvent;
4525
4532
createEvent(eventInterface: "PaymentMethodChangeEvent"): PaymentMethodChangeEvent;
4526
4533
createEvent(eventInterface: "PaymentRequestUpdateEvent"): PaymentRequestUpdateEvent;
4534
+ createEvent(eventInterface: "PictureInPictureEvent"): PictureInPictureEvent;
4527
4535
createEvent(eventInterface: "PointerEvent"): PointerEvent;
4528
4536
createEvent(eventInterface: "PopStateEvent"): PopStateEvent;
4529
4537
createEvent(eventInterface: "ProgressEvent"): ProgressEvent;
@@ -4817,6 +4825,13 @@ interface EXT_sRGB {
4817
4825
interface EXT_shader_texture_lod {
4818
4826
}
4819
4827
4828
+ interface EXT_texture_compression_bptc {
4829
+ readonly COMPRESSED_RGBA_BPTC_UNORM_EXT: GLenum;
4830
+ readonly COMPRESSED_RGB_BPTC_SIGNED_FLOAT_EXT: GLenum;
4831
+ readonly COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_EXT: GLenum;
4832
+ readonly COMPRESSED_SRGB_ALPHA_BPTC_UNORM_EXT: GLenum;
4833
+ }
4834
+
4820
4835
interface EXT_texture_compression_rgtc {
4821
4836
readonly COMPRESSED_RED_GREEN_RGTC2_EXT: GLenum;
4822
4837
readonly COMPRESSED_RED_RGTC1_EXT: GLenum;
@@ -10660,6 +10675,7 @@ interface PermissionStatusEventMap {
10660
10675
}
10661
10676
10662
10677
interface PermissionStatus extends EventTarget {
10678
+ readonly name: string;
10663
10679
onchange: ((this: PermissionStatus, ev: Event) => any) | null;
10664
10680
readonly state: PermissionState;
10665
10681
addEventListener<K extends keyof PermissionStatusEventMap>(type: K, listener: (this: PermissionStatus, ev: PermissionStatusEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -10682,6 +10698,15 @@ declare var Permissions: {
10682
10698
new(): Permissions;
10683
10699
};
10684
10700
10701
+ interface PictureInPictureEvent extends Event {
10702
+ readonly pictureInPictureWindow: PictureInPictureWindow;
10703
+ }
10704
+
10705
+ declare var PictureInPictureEvent: {
10706
+ prototype: PictureInPictureEvent;
10707
+ new(type: string, eventInitDict: PictureInPictureEventInit): PictureInPictureEvent;
10708
+ };
10709
+
10685
10710
interface PictureInPictureWindowEventMap {
10686
10711
"resize": Event;
10687
10712
}
@@ -10881,6 +10906,7 @@ declare var PushSubscription: {
10881
10906
/** Available only in secure contexts. */
10882
10907
interface PushSubscriptionOptions {
10883
10908
readonly applicationServerKey: ArrayBuffer | null;
10909
+ readonly userVisibleOnly: boolean;
10884
10910
}
10885
10911
10886
10912
declare var PushSubscriptionOptions: {
@@ -15951,35 +15977,39 @@ interface WebGLRenderingContextBase {
15951
15977
getBufferParameter(target: GLenum, pname: GLenum): any;
15952
15978
getContextAttributes(): WebGLContextAttributes | null;
15953
15979
getError(): GLenum;
15980
+ getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
15954
15981
getExtension(extensionName: "EXT_blend_minmax"): EXT_blend_minmax | null;
15955
15982
getExtension(extensionName: "EXT_color_buffer_float"): EXT_color_buffer_float | null;
15956
15983
getExtension(extensionName: "EXT_color_buffer_half_float"): EXT_color_buffer_half_float | null;
15957
15984
getExtension(extensionName: "EXT_float_blend"): EXT_float_blend | null;
15958
- getExtension(extensionName: "EXT_texture_filter_anisotropic"): EXT_texture_filter_anisotropic | null;
15959
15985
getExtension(extensionName: "EXT_frag_depth"): EXT_frag_depth | null;
15960
- getExtension(extensionName: "EXT_shader_texture_lod"): EXT_shader_texture_lod | null;
15961
15986
getExtension(extensionName: "EXT_sRGB"): EXT_sRGB | null;
15987
+ getExtension(extensionName: "EXT_shader_texture_lod"): EXT_shader_texture_lod | null;
15988
+ getExtension(extensionName: "EXT_texture_compression_bptc"): EXT_texture_compression_bptc | null;
15989
+ getExtension(extensionName: "EXT_texture_compression_rgtc"): EXT_texture_compression_rgtc | null;
15990
+ getExtension(extensionName: "EXT_texture_filter_anisotropic"): EXT_texture_filter_anisotropic | null;
15962
15991
getExtension(extensionName: "KHR_parallel_shader_compile"): KHR_parallel_shader_compile | null;
15992
+ getExtension(extensionName: "OES_element_index_uint"): OES_element_index_uint | null;
15993
+ getExtension(extensionName: "OES_fbo_render_mipmap"): OES_fbo_render_mipmap | null;
15994
+ getExtension(extensionName: "OES_standard_derivatives"): OES_standard_derivatives | null;
15995
+ getExtension(extensionName: "OES_texture_float"): OES_texture_float | null;
15996
+ getExtension(extensionName: "OES_texture_float_linear"): OES_texture_float_linear | null;
15997
+ getExtension(extensionName: "OES_texture_half_float"): OES_texture_half_float | null;
15998
+ getExtension(extensionName: "OES_texture_half_float_linear"): OES_texture_half_float_linear | null;
15963
15999
getExtension(extensionName: "OES_vertex_array_object"): OES_vertex_array_object | null;
15964
16000
getExtension(extensionName: "OVR_multiview2"): OVR_multiview2 | null;
15965
16001
getExtension(extensionName: "WEBGL_color_buffer_float"): WEBGL_color_buffer_float | null;
15966
16002
getExtension(extensionName: "WEBGL_compressed_texture_astc"): WEBGL_compressed_texture_astc | null;
15967
16003
getExtension(extensionName: "WEBGL_compressed_texture_etc"): WEBGL_compressed_texture_etc | null;
15968
16004
getExtension(extensionName: "WEBGL_compressed_texture_etc1"): WEBGL_compressed_texture_etc1 | null;
16005
+ getExtension(extensionName: "WEBGL_compressed_texture_s3tc"): WEBGL_compressed_texture_s3tc | null;
15969
16006
getExtension(extensionName: "WEBGL_compressed_texture_s3tc_srgb"): WEBGL_compressed_texture_s3tc_srgb | null;
16007
+ getExtension(extensionName: "WEBGL_debug_renderer_info"): WEBGL_debug_renderer_info | null;
15970
16008
getExtension(extensionName: "WEBGL_debug_shaders"): WEBGL_debug_shaders | null;
16009
+ getExtension(extensionName: "WEBGL_depth_texture"): WEBGL_depth_texture | null;
15971
16010
getExtension(extensionName: "WEBGL_draw_buffers"): WEBGL_draw_buffers | null;
15972
16011
getExtension(extensionName: "WEBGL_lose_context"): WEBGL_lose_context | null;
15973
- getExtension(extensionName: "WEBGL_depth_texture"): WEBGL_depth_texture | null;
15974
- getExtension(extensionName: "WEBGL_debug_renderer_info"): WEBGL_debug_renderer_info | null;
15975
- getExtension(extensionName: "WEBGL_compressed_texture_s3tc"): WEBGL_compressed_texture_s3tc | null;
15976
- getExtension(extensionName: "OES_texture_half_float_linear"): OES_texture_half_float_linear | null;
15977
- getExtension(extensionName: "OES_texture_half_float"): OES_texture_half_float | null;
15978
- getExtension(extensionName: "OES_texture_float_linear"): OES_texture_float_linear | null;
15979
- getExtension(extensionName: "OES_texture_float"): OES_texture_float | null;
15980
- getExtension(extensionName: "OES_standard_derivatives"): OES_standard_derivatives | null;
15981
- getExtension(extensionName: "OES_element_index_uint"): OES_element_index_uint | null;
15982
- getExtension(extensionName: "ANGLE_instanced_arrays"): ANGLE_instanced_arrays | null;
16012
+ getExtension(extensionName: "WEBGL_multi_draw"): WEBGL_multi_draw | null;
15983
16013
getExtension(name: string): any;
15984
16014
getFramebufferAttachmentParameter(target: GLenum, attachment: GLenum, pname: GLenum): any;
15985
16015
getParameter(pname: GLenum): any;
0 commit comments