@svta/common-media-library
Version:
A common library for media playback in JavaScript
23 lines • 499 B
TypeScript
import type { CmcdReportingMode } from './CmcdReportingMode.js';
/**
* Options for formatting CMCD data values.
*
* @group CMCD
*
* @beta
*/
export type CmcdFormatterOptions = {
/**
* The version of the CMCD specification to use.
*/
version: number;
/**
* The reporting mode to use.
*/
reportingMode: CmcdReportingMode;
/**
* The base URL to use for relative URLs.
*/
baseUrl?: string;
};
//# sourceMappingURL=CmcdFormatterOptions.d.ts.map