We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab153fd commit 1d26e9cCopy full SHA for 1d26e9c
.changeset/olive-camels-greet.md
@@ -0,0 +1,5 @@
1
+---
2
+"astro": patch
3
4
+
5
+Adds the `disableremoteplayback` attribute to MediaHTMLAttributes interface
packages/astro/astro-jsx.d.ts
@@ -873,6 +873,8 @@ declare namespace astroHTML.JSX {
873
playsinline?: boolean | string | undefined | null;
874
preload?: string | undefined | null;
875
src?: string | undefined | null;
876
+ // https://www.w3.org/TR/remote-playback/#the-disableremoteplayback-attribute
877
+ disableRemotePlayback?: boolean | string | undefined | null;
878
}
879
880
interface MetaHTMLAttributes extends HTMLAttributes {
0 commit comments