active-switching
Version:
NPAW's SDK for CDN Balancing and P2P
26 lines (25 loc) • 620 B
TypeScript
/**
* @class
* @description Object that stores the plugin settings.
* @exports Options
*/
export default class Options {
accountCode: string;
token?: string;
originCode: string;
applicationCode: string;
resource: string;
isLive: boolean;
videoId?: string;
overrideManifest: boolean;
updateTime: number;
reportTime: number;
debug: boolean;
isDev: boolean;
preWarm: number;
/**
* Constructs options object.
* @param {constructionOptions} options JSON with the options to construct the balancer.
*/
constructor(options: constructionOptions);
}