We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16cb322 commit 9eac6c7Copy full SHA for 9eac6c7
p2p-media-loader-demo/src/App.tsx
@@ -207,6 +207,7 @@ function App() {
207
};
208
209
const initHlsClapprPlayer = (url: string) => {
210
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
211
const engine = hlsEngine.current!;
212
const clapprPlayer = new window.Clappr.Player({
213
parentId: "#player-container",
p2p-media-loader-demo/src/global.d.ts
@@ -1,6 +1,8 @@
1
declare global {
2
interface Window {
3
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
4
Clappr: any;
5
6
LevelSelector: any;
7
}
8
0 commit comments