react-native-theoplayer
Version:
A THEOplayer video component for react-native.
17 lines (16 loc) • 362 B
JavaScript
;
export class THEOplayerWebCastAdapter {
constructor(player) {
this._player = player;
}
get casting() {
return this._player.cast?.casting ?? false;
}
get chromecast() {
return this._player.cast?.chromecast;
}
get airplay() {
return this._player.cast?.airplay;
}
}
//# sourceMappingURL=THEOplayerWebCastAdapter.js.map