Skip to content

Commit da42685

Browse files
authored
🤖 Update core dependencies
1 parent 5ea2fe8 commit da42685

5 files changed

+190
-152
lines changed

baselines/dom.generated.d.ts

+17
Original file line numberDiff line numberDiff line change
@@ -2639,6 +2639,16 @@ declare var CDATASection: {
26392639
new(): CDATASection;
26402640
};
26412641

2642+
interface CSPViolationReportBody extends ReportBody {
2643+
readonly effectiveDirective: string;
2644+
readonly statusCode: number;
2645+
}
2646+
2647+
declare var CSPViolationReportBody: {
2648+
prototype: CSPViolationReportBody;
2649+
new(): CSPViolationReportBody;
2650+
};
2651+
26422652
interface CSSAnimation extends Animation {
26432653
readonly animationName: string;
26442654
addEventListener<K extends keyof AnimationEventMap>(type: K, listener: (this: CSSAnimation, ev: AnimationEventMap[K]) => any, options?: boolean | AddEventListenerOptions): void;
@@ -14878,6 +14888,13 @@ interface WEBGL_compressed_texture_etc1 {
1487814888
readonly COMPRESSED_RGB_ETC1_WEBGL: 0x8D64;
1487914889
}
1488014890

14891+
interface WEBGL_compressed_texture_pvrtc {
14892+
readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: 0x8C00;
14893+
readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: 0x8C01;
14894+
readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: 0x8C02;
14895+
readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: 0x8C03;
14896+
}
14897+
1488114898
/** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
1488214899
interface WEBGL_compressed_texture_s3tc {
1488314900
readonly COMPRESSED_RGB_S3TC_DXT1_EXT: 0x83F0;

baselines/serviceworker.generated.d.ts

+7
Original file line numberDiff line numberDiff line change
@@ -3343,6 +3343,13 @@ interface WEBGL_compressed_texture_etc1 {
33433343
readonly COMPRESSED_RGB_ETC1_WEBGL: 0x8D64;
33443344
}
33453345

3346+
interface WEBGL_compressed_texture_pvrtc {
3347+
readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: 0x8C00;
3348+
readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: 0x8C01;
3349+
readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: 0x8C02;
3350+
readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: 0x8C03;
3351+
}
3352+
33463353
/** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
33473354
interface WEBGL_compressed_texture_s3tc {
33483355
readonly COMPRESSED_RGB_S3TC_DXT1_EXT: 0x83F0;

baselines/sharedworker.generated.d.ts

+7
Original file line numberDiff line numberDiff line change
@@ -3207,6 +3207,13 @@ interface WEBGL_compressed_texture_etc1 {
32073207
readonly COMPRESSED_RGB_ETC1_WEBGL: 0x8D64;
32083208
}
32093209

3210+
interface WEBGL_compressed_texture_pvrtc {
3211+
readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: 0x8C00;
3212+
readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: 0x8C01;
3213+
readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: 0x8C02;
3214+
readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: 0x8C03;
3215+
}
3216+
32103217
/** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
32113218
interface WEBGL_compressed_texture_s3tc {
32123219
readonly COMPRESSED_RGB_S3TC_DXT1_EXT: 0x83F0;

baselines/webworker.generated.d.ts

+7
Original file line numberDiff line numberDiff line change
@@ -3497,6 +3497,13 @@ interface WEBGL_compressed_texture_etc1 {
34973497
readonly COMPRESSED_RGB_ETC1_WEBGL: 0x8D64;
34983498
}
34993499

3500+
interface WEBGL_compressed_texture_pvrtc {
3501+
readonly COMPRESSED_RGB_PVRTC_4BPPV1_IMG: 0x8C00;
3502+
readonly COMPRESSED_RGB_PVRTC_2BPPV1_IMG: 0x8C01;
3503+
readonly COMPRESSED_RGBA_PVRTC_4BPPV1_IMG: 0x8C02;
3504+
readonly COMPRESSED_RGBA_PVRTC_2BPPV1_IMG: 0x8C03;
3505+
}
3506+
35003507
/** The WEBGL_compressed_texture_s3tc extension is part of the WebGL API and exposes four S3TC compressed texture formats. */
35013508
interface WEBGL_compressed_texture_s3tc {
35023509
readonly COMPRESSED_RGB_S3TC_DXT1_EXT: 0x83F0;

0 commit comments

Comments
 (0)