@@ -2182,7 +2182,7 @@ declare var AnimationPlaybackEvent: {
2182
2182
};
2183
2183
2184
2184
interface AnimationTimeline {
2185
- readonly currentTime: number | null;
2185
+ readonly currentTime: CSSNumberish | null;
2186
2186
}
2187
2187
2188
2188
declare var AnimationTimeline: {
@@ -2435,6 +2435,8 @@ declare var AuthenticatorAssertionResponse: {
2435
2435
interface AuthenticatorAttestationResponse extends AuthenticatorResponse {
2436
2436
readonly attestationObject: ArrayBuffer;
2437
2437
getAuthenticatorData(): ArrayBuffer;
2438
+ getPublicKey(): ArrayBuffer | null;
2439
+ getPublicKeyAlgorithm(): COSEAlgorithmIdentifier;
2438
2440
getTransports(): string[];
2439
2441
}
2440
2442
@@ -2634,6 +2636,14 @@ declare var CSSConditionRule: {
2634
2636
new(): CSSConditionRule;
2635
2637
};
2636
2638
2639
+ interface CSSContainerRule extends CSSConditionRule {
2640
+ }
2641
+
2642
+ declare var CSSContainerRule: {
2643
+ prototype: CSSContainerRule;
2644
+ new(): CSSContainerRule;
2645
+ };
2646
+
2637
2647
interface CSSCounterStyleRule extends CSSRule {
2638
2648
additiveSymbols: string;
2639
2649
fallback: string;
@@ -2943,6 +2953,9 @@ interface CSSStyleDeclaration {
2943
2953
columnWidth: string;
2944
2954
columns: string;
2945
2955
contain: string;
2956
+ container: string;
2957
+ containerName: string;
2958
+ containerType: string;
2946
2959
content: string;
2947
2960
counterIncrement: string;
2948
2961
counterReset: string;
@@ -3011,6 +3024,7 @@ interface CSSStyleDeclaration {
3011
3024
gridTemplateColumns: string;
3012
3025
gridTemplateRows: string;
3013
3026
height: string;
3027
+ hyphenateCharacter: string;
3014
3028
hyphens: string;
3015
3029
/** @deprecated */
3016
3030
imageOrientation: string;
@@ -3544,6 +3558,7 @@ interface CanvasPath {
3544
3558
moveTo(x: number, y: number): void;
3545
3559
quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;
3546
3560
rect(x: number, y: number, w: number, h: number): void;
3561
+ roundRect(x: number, y: number, w: number, h: number, radii?: number | DOMPointInit | (number | DOMPointInit)[]): void;
3547
3562
}
3548
3563
3549
3564
interface CanvasPathDrawingStyles {
@@ -4950,6 +4965,17 @@ interface EXT_texture_filter_anisotropic {
4950
4965
readonly TEXTURE_MAX_ANISOTROPY_EXT: GLenum;
4951
4966
}
4952
4967
4968
+ interface EXT_texture_norm16 {
4969
+ readonly R16_EXT: GLenum;
4970
+ readonly R16_SNORM_EXT: GLenum;
4971
+ readonly RG16_EXT: GLenum;
4972
+ readonly RG16_SNORM_EXT: GLenum;
4973
+ readonly RGB16_EXT: GLenum;
4974
+ readonly RGB16_SNORM_EXT: GLenum;
4975
+ readonly RGBA16_EXT: GLenum;
4976
+ readonly RGBA16_SNORM_EXT: GLenum;
4977
+ }
4978
+
4953
4979
interface ElementEventMap {
4954
4980
"fullscreenchange": Event;
4955
4981
"fullscreenerror": Event;
@@ -10239,6 +10265,16 @@ declare var Notification: {
10239
10265
requestPermission(deprecatedCallback?: NotificationPermissionCallback): Promise<NotificationPermission>;
10240
10266
};
10241
10267
10268
+ interface OES_draw_buffers_indexed {
10269
+ blendEquationSeparateiOES(buf: GLuint, modeRGB: GLenum, modeAlpha: GLenum): void;
10270
+ blendEquationiOES(buf: GLuint, mode: GLenum): void;
10271
+ blendFuncSeparateiOES(buf: GLuint, srcRGB: GLenum, dstRGB: GLenum, srcAlpha: GLenum, dstAlpha: GLenum): void;
10272
+ blendFunciOES(buf: GLuint, src: GLenum, dst: GLenum): void;
10273
+ colorMaskiOES(buf: GLuint, r: GLboolean, g: GLboolean, b: GLboolean, a: GLboolean): void;
10274
+ disableiOES(target: GLenum, index: GLuint): void;
10275
+ enableiOES(target: GLenum, index: GLuint): void;
10276
+ }
10277
+
10242
10278
/** The OES_element_index_uint extension is part of the WebGL API and adds support for gl.UNSIGNED_INT types to WebGLRenderingContext.drawElements(). */
10243
10279
interface OES_element_index_uint {
10244
10280
}
0 commit comments