UNPKG

zombiebox

Version:

ZombieBox is a JavaScript framework for development of Smart TV and STB applications

38 lines (31 loc) 656 B
/* * This file is part of the ZombieBox package. * * Copyright © 2012-2021, Interfaced * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import AbstractDRMClient from './abstract-drm-client'; import {Type} from './drm'; /** */ export default class PlayReadyClient extends AbstractDRMClient { /** * @param {string=} licenseServer */ constructor(licenseServer) { super(); this.type = Type.PLAYREADY; /** * @type {?string} */ this.licenseServer = licenseServer || null; } /** * @return {?string} */ getCustomData() { return null; } }