UNPKG

zombiebox

Version:

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

49 lines (40 loc) 794 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 VerimatrixClient extends AbstractDRMClient { /** * @param {Params} params */ constructor(params) { super(); this.type = Type.VERIMATRIX; /** * @type {Params} * @protected */ this._params = params; } /** * @return {Params} */ getParams() { return this._params; } } /** * @typedef {{ * company: (string|undefined), * address: (string|undefined), * iptv: (string|undefined) * }} */ export let Params;