Video player wrapper - ionic 5 + Angular

Hi team,

I would like to know if there is any wrapper for this HLS Player
The case is that it is in JavaScript and I don’t know how to convert JavaScript to TypeScript to use it in ionic v5 + Angular.

If you have any idea, I would be so thankful.
Thanks in advanced.

NOTE: I want to use this player because it has many useful options for me.

This is how the plugin works:

var hls = new Hls();
hls.loadSource("https://www.w3schools.com/html/mov_bbb.mp4");
hls.attachMedia(video);
hls.on(Hls.Events.MANIFEST_PARSED,function() {
  video.play();
});