define-plugin.d.ts 714 B

1234567891011121314151617
  1. declare const __VERSION__: string;
  2. // Dynamic Modules
  3. declare const __USE_ALT_AUDIO__: boolean;
  4. declare const __USE_EME_DRM__: boolean;
  5. declare const __USE_SUBTITLES__: boolean;
  6. declare const __USE_CMCD__: boolean;
  7. declare const __USE_CONTENT_STEERING__: boolean;
  8. declare const __USE_VARIABLE_SUBSTITUTION__: boolean;
  9. declare const __USE_M2TS_ADVANCED_CODECS__: boolean;
  10. declare const __USE_MEDIA_CAPABILITIES__: boolean;
  11. declare const __USE_INTERSTITIALS__: boolean;
  12. // __IN_WORKER__ is provided from a closure call around the final UMD bundle.
  13. declare const __IN_WORKER__: boolean;
  14. // __HLS_WORKER_BUNDLE__ is the name of the closure around the final UMD bundle.
  15. declare const __HLS_WORKER_BUNDLE__: Function;