-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MediaSession not supported by TypeScript 2.3.4 #19473
Comments
PRs welcomed. You can find more information about contributing lib.d.ts fixes at https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md#contributing-libdts-fixes. |
I would be glad to help in the future. Currently I do not have the enough knowledge to contribute. Best regards, |
Hi @pablo-gonzalez, I am getting exactly same error while trying to use MediaSession in Typescript. I tried installing @types/wicg-mediasession as well but couldn't resolve the issue. Here's the response from the developer when I tried to use this library in my Angular project: Thanks! |
(Exactly) 3 years after this issue, the only "solution" is using // @ts-ignore? |
The "solution" is not
I'm using it now and it's working fantastic! |
+1, this is working, the issue may be closed imo. Also add this to some docs so it is google'd better) |
I installed @types/wicg-mediasession but its not doing anything to solve the error for me. Edit: using // @ts-ignore which is working |
Try using: navigator.mediaSession.metadata = new MediaMetadata({
// ...
}); instead of: navigator.mediaSession.metadata = {
// ...
}; because I was also having trouble after installing this library and switching to that fixed it for me. EDIT: Also make sure to add |
@redstonewizard Thanks for your recommendation. My code was already instantiating the Object with new but I was missing the tsconfig.json entries. However its working now even without those changes in the typescript config, no more errors just like that. As far as I know we did not change the typescript version since then (using ~4.6.4), same one that was producing the error before, if I'm not mistaken. |
Okay. |
Just looking at old issues; this was fixed in #44684. |
TypeScript Version: 2.3.4
Code
Expected behavior:
MediaSession and MediaMetadata should be recognized by Typescript.
https://developer.mozilla.org/en-US/docs/Web/API/MediaSession
https://developers.google.com/web/updates/2017/02/media-session
Actual behavior:
Visual Studio Code Version 1.17.2 is showing the following Problems after saving the ts file:
System information:
As a workround I have installed @types/wicg-mediasession:
https://www.npmjs.com/package/@types/wicg-mediasession
The text was updated successfully, but these errors were encountered: