Skip to content

Commit 24c0ae0

Browse files
authored
Update to bcd@7.1.8 (#2167)
1 parent 2aa51ae commit 24c0ae0

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

baselines/dom.generated.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3274,6 +3274,7 @@ interface AnimationTimeline {
32743274
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)
32753275
*/
32763276
readonly currentTime: CSSNumberish | null;
3277+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration) */
32773278
readonly duration: CSSNumberish | null;
32783279
}
32793280

@@ -30618,6 +30619,12 @@ interface ScreenOrientation extends EventTarget {
3061830619
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/type)
3061930620
*/
3062030621
readonly type: OrientationType;
30622+
/**
30623+
* The **`lock()`** method of the ScreenOrientation interface locks the orientation of the containing document to the specified orientation.
30624+
*
30625+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/lock)
30626+
*/
30627+
lock(orientation: OrientationLockType): Promise<void>;
3062130628
/**
3062230629
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
3062330630
*
@@ -40068,6 +40075,7 @@ type NotificationDirection = "auto" | "ltr" | "rtl";
4006840075
type NotificationPermission = "default" | "denied" | "granted";
4006940076
type OffscreenRenderingContextId = "2d" | "bitmaprenderer" | "webgl" | "webgl2" | "webgpu";
4007040077
type OpusBitstreamFormat = "ogg" | "opus";
40078+
type OrientationLockType = "any" | "landscape" | "landscape-primary" | "landscape-secondary" | "natural" | "portrait" | "portrait-primary" | "portrait-secondary";
4007140079
type OrientationType = "landscape-primary" | "landscape-secondary" | "portrait-primary" | "portrait-secondary";
4007240080
type OscillatorType = "custom" | "sawtooth" | "sine" | "square" | "triangle";
4007340081
type OverSampleType = "2x" | "4x" | "none";

baselines/ts5.5/dom.generated.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3274,6 +3274,7 @@ interface AnimationTimeline {
32743274
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)
32753275
*/
32763276
readonly currentTime: CSSNumberish | null;
3277+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration) */
32773278
readonly duration: CSSNumberish | null;
32783279
}
32793280

@@ -30596,6 +30597,12 @@ interface ScreenOrientation extends EventTarget {
3059630597
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/type)
3059730598
*/
3059830599
readonly type: OrientationType;
30600+
/**
30601+
* The **`lock()`** method of the ScreenOrientation interface locks the orientation of the containing document to the specified orientation.
30602+
*
30603+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/lock)
30604+
*/
30605+
lock(orientation: OrientationLockType): Promise<void>;
3059930606
/**
3060030607
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
3060130608
*
@@ -40045,6 +40052,7 @@ type NotificationDirection = "auto" | "ltr" | "rtl";
4004540052
type NotificationPermission = "default" | "denied" | "granted";
4004640053
type OffscreenRenderingContextId = "2d" | "bitmaprenderer" | "webgl" | "webgl2" | "webgpu";
4004740054
type OpusBitstreamFormat = "ogg" | "opus";
40055+
type OrientationLockType = "any" | "landscape" | "landscape-primary" | "landscape-secondary" | "natural" | "portrait" | "portrait-primary" | "portrait-secondary";
4004840056
type OrientationType = "landscape-primary" | "landscape-secondary" | "portrait-primary" | "portrait-secondary";
4004940057
type OscillatorType = "custom" | "sawtooth" | "sine" | "square" | "triangle";
4005040058
type OverSampleType = "2x" | "4x" | "none";

baselines/ts5.6/dom.generated.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3274,6 +3274,7 @@ interface AnimationTimeline {
32743274
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/currentTime)
32753275
*/
32763276
readonly currentTime: CSSNumberish | null;
3277+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/AnimationTimeline/duration) */
32773278
readonly duration: CSSNumberish | null;
32783279
}
32793280

@@ -30618,6 +30619,12 @@ interface ScreenOrientation extends EventTarget {
3061830619
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/type)
3061930620
*/
3062030621
readonly type: OrientationType;
30622+
/**
30623+
* The **`lock()`** method of the ScreenOrientation interface locks the orientation of the containing document to the specified orientation.
30624+
*
30625+
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ScreenOrientation/lock)
30626+
*/
30627+
lock(orientation: OrientationLockType): Promise<void>;
3062130628
/**
3062230629
* The **`unlock()`** method of the ScreenOrientation interface unlocks the orientation of the containing document from its default orientation.
3062330630
*
@@ -40068,6 +40075,7 @@ type NotificationDirection = "auto" | "ltr" | "rtl";
4006840075
type NotificationPermission = "default" | "denied" | "granted";
4006940076
type OffscreenRenderingContextId = "2d" | "bitmaprenderer" | "webgl" | "webgl2" | "webgpu";
4007040077
type OpusBitstreamFormat = "ogg" | "opus";
40078+
type OrientationLockType = "any" | "landscape" | "landscape-primary" | "landscape-secondary" | "natural" | "portrait" | "portrait-primary" | "portrait-secondary";
4007140079
type OrientationType = "landscape-primary" | "landscape-secondary" | "portrait-primary" | "portrait-secondary";
4007240080
type OscillatorType = "custom" | "sawtooth" | "sine" | "square" | "triangle";
4007340081
type OverSampleType = "2x" | "4x" | "none";

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)