import type { PlayerOptions as VideoJSPlayerOptions } from "./videojs.js"; export type Track = { kind: "captions"; label: string; src: string; srclang: string; }; export type PlayerOptions = VideoJSPlayerOptions & { courseId?: string; tracks: Track[]; }; //# sourceMappingURL=coursera.d.ts.map