123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- define([], function () {
- var TimelineAPI = function () {
- function TimelineAPI() {
- _classCallCheck(this, TimelineAPI);
- }
-
- TimelineAPI.prototype.addHighlight = function addHighlight(widgetId, timer) {
- void widgetId;
- void timer;
- };
-
- TimelineAPI.prototype.deleteHighlight = function deleteHighlight(widgetId, actId) {
- void widgetId;
- void actId;
- };
-
- TimelineAPI.prototype.getEpisode = function getEpisode(id) {
- void id;
- };
-
- TimelineAPI.prototype.getEpisodeIDs = function getEpisodeIDs() {};
-
- TimelineAPI.prototype.isHighlightSupported = function isHighlightSupported(widgetId) {
- void widgetId;
- };
-
- TimelineAPI.prototype.moveEpisode = function moveEpisode(id, beforeId, options) {
- void id;
- void beforeId;
- void options;
- };
-
- TimelineAPI.prototype.updateEpisodeDuration = function updateEpisodeDuration(id, start, end, options) {
- void id;
- void start;
- void end;
- void options;
- };
-
- TimelineAPI.prototype.updateHighlight = function updateHighlight(widgetId, actId, attributes) {
- void widgetId;
- void actId;
- void attributes;
- };
- return TimelineAPI;
- }();
- return TimelineAPI;
- });
|