@@ -1494,12 +1494,12 @@ interface RTCTransportStats extends RTCStats {
1494
1494
tlsVersion?: string;
1495
1495
}
1496
1496
1497
- interface ReadableStreamDefaultReadDoneResult {
1497
+ interface ReadableStreamReadDoneResult {
1498
1498
done: true;
1499
1499
value?: undefined;
1500
1500
}
1501
1501
1502
- interface ReadableStreamDefaultReadValueResult <T> {
1502
+ interface ReadableStreamReadValueResult <T> {
1503
1503
done: false;
1504
1504
value: T;
1505
1505
}
@@ -2547,7 +2547,7 @@ declare var CSSAnimation: {
2547
2547
2548
2548
/** A single condition CSS at-rule, which consists of a condition and a statement block. It is a child of CSSGroupingRule. */
2549
2549
interface CSSConditionRule extends CSSGroupingRule {
2550
- conditionText: string;
2550
+ readonly conditionText: string;
2551
2551
}
2552
2552
2553
2553
declare var CSSConditionRule: {
@@ -2833,7 +2833,6 @@ interface CSSStyleDeclaration {
2833
2833
columns: string;
2834
2834
contain: string;
2835
2835
content: string;
2836
- contentVisibility: string;
2837
2836
counterIncrement: string;
2838
2837
counterReset: string;
2839
2838
counterSet: string;
@@ -3207,6 +3206,8 @@ interface CSSStyleDeclaration {
3207
3206
/** @deprecated This is a legacy alias of `perspectiveOrigin`. */
3208
3207
webkitPerspectiveOrigin: string;
3209
3208
webkitTextFillColor: string;
3209
+ /** @deprecated This is a legacy alias of `textSizeAdjust`. */
3210
+ webkitTextSizeAdjust: string;
3210
3211
webkitTextStroke: string;
3211
3212
webkitTextStrokeColor: string;
3212
3213
webkitTextStrokeWidth: string;
@@ -11466,7 +11467,7 @@ declare var ReadableStreamDefaultController: {
11466
11467
};
11467
11468
11468
11469
interface ReadableStreamDefaultReader<R = any> extends ReadableStreamGenericReader {
11469
- read(): Promise<ReadableStreamDefaultReadResult <R>>;
11470
+ read(): Promise<ReadableStreamReadResult <R>>;
11470
11471
releaseLock(): void;
11471
11472
}
11472
11473
@@ -18115,7 +18116,7 @@ type OnBeforeUnloadEventHandler = OnBeforeUnloadEventHandlerNonNull | null;
18115
18116
type OnErrorEventHandler = OnErrorEventHandlerNonNull | null;
18116
18117
type PerformanceEntryList = PerformanceEntry[];
18117
18118
type ReadableStreamController<T> = ReadableStreamDefaultController<T>;
18118
- type ReadableStreamDefaultReadResult <T> = ReadableStreamDefaultReadValueResult <T> | ReadableStreamDefaultReadDoneResult ;
18119
+ type ReadableStreamReadResult <T> = ReadableStreamReadValueResult <T> | ReadableStreamReadDoneResult ;
18119
18120
type ReadableStreamReader<T> = ReadableStreamDefaultReader<T>;
18120
18121
type RenderingContext = CanvasRenderingContext2D | ImageBitmapRenderingContext | WebGLRenderingContext | WebGL2RenderingContext;
18121
18122
type RequestInfo = Request | string;
@@ -18162,7 +18163,7 @@ type CompositeOperationOrAuto = "accumulate" | "add" | "auto" | "replace";
18162
18163
type CredentialMediationRequirement = "optional" | "required" | "silent";
18163
18164
type DOMParserSupportedType = "application/xhtml+xml" | "application/xml" | "image/svg+xml" | "text/html" | "text/xml";
18164
18165
type DirectionSetting = "" | "lr" | "rl";
18165
- type DisplayCaptureSurfaceType = "application" | " browser" | "monitor" | "window";
18166
+ type DisplayCaptureSurfaceType = "browser" | "monitor" | "window";
18166
18167
type DistanceModelType = "exponential" | "inverse" | "linear";
18167
18168
type DocumentReadyState = "complete" | "interactive" | "loading";
18168
18169
type DocumentVisibilityState = "hidden" | "visible";
0 commit comments