@@ -2182,7 +2182,7 @@ declare var AnimationPlaybackEvent: {
21822182};
21832183
21842184interface AnimationTimeline {
2185- readonly currentTime: number | null;
2185+ readonly currentTime: CSSNumberish | null;
21862186}
21872187
21882188declare var AnimationTimeline: {
@@ -2435,6 +2435,8 @@ declare var AuthenticatorAssertionResponse: {
24352435interface AuthenticatorAttestationResponse extends AuthenticatorResponse {
24362436 readonly attestationObject: ArrayBuffer;
24372437 getAuthenticatorData(): ArrayBuffer;
2438+ getPublicKey(): ArrayBuffer | null;
2439+ getPublicKeyAlgorithm(): COSEAlgorithmIdentifier;
24382440 getTransports(): string[];
24392441}
24402442
@@ -2634,6 +2636,14 @@ declare var CSSConditionRule: {
26342636 new(): CSSConditionRule;
26352637};
26362638
2639+ interface CSSContainerRule extends CSSConditionRule {
2640+ }
2641+
2642+ declare var CSSContainerRule: {
2643+ prototype: CSSContainerRule;
2644+ new(): CSSContainerRule;
2645+ };
2646+
26372647interface CSSCounterStyleRule extends CSSRule {
26382648 additiveSymbols: string;
26392649 fallback: string;
@@ -2943,6 +2953,9 @@ interface CSSStyleDeclaration {
29432953 columnWidth: string;
29442954 columns: string;
29452955 contain: string;
2956+ container: string;
2957+ containerName: string;
2958+ containerType: string;
29462959 content: string;
29472960 counterIncrement: string;
29482961 counterReset: string;
@@ -3011,6 +3024,7 @@ interface CSSStyleDeclaration {
30113024 gridTemplateColumns: string;
30123025 gridTemplateRows: string;
30133026 height: string;
3027+ hyphenateCharacter: string;
30143028 hyphens: string;
30153029 /** @deprecated */
30163030 imageOrientation: string;
@@ -3544,6 +3558,7 @@ interface CanvasPath {
35443558 moveTo(x: number, y: number): void;
35453559 quadraticCurveTo(cpx: number, cpy: number, x: number, y: number): void;
35463560 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;
35473562}
35483563
35493564interface CanvasPathDrawingStyles {
@@ -4950,6 +4965,17 @@ interface EXT_texture_filter_anisotropic {
49504965 readonly TEXTURE_MAX_ANISOTROPY_EXT: GLenum;
49514966}
49524967
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+
49534979interface ElementEventMap {
49544980 "fullscreenchange": Event;
49554981 "fullscreenerror": Event;
@@ -10239,6 +10265,16 @@ declare var Notification: {
1023910265 requestPermission(deprecatedCallback?: NotificationPermissionCallback): Promise<NotificationPermission>;
1024010266};
1024110267
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+
1024210278/** The OES_element_index_uint extension is part of the WebGL API and adds support for gl.UNSIGNED_INT types to WebGLRenderingContext.drawElements(). */
1024310279interface OES_element_index_uint {
1024410280}
0 commit comments