xgplayer
Version:
video player
49 lines (48 loc) • 2.5 kB
TypeScript
export * from "./presets";
export { default as langZhHk } from "./lang/zh-hk";
export { default as langJp } from "./lang/jp";
export { default as langZhCn } from "./lang/zh-cn";
export { default as langBr } from "./lang/br";
export { default as langDe } from "./lang/de";
export { default as langEn } from "./lang/en";
export { default as langEs } from "./lang/es";
export { default as langFr } from "./lang/fr";
export { default as langId } from "./lang/id";
export { default as langIt } from "./lang/it";
export { default as langKr } from "./lang/kr";
export { default as langMsMy } from "./lang/ms-my";
export { default as langRu } from "./lang/ru";
export { default as langTh } from "./lang/th";
export { default as langVn } from "./lang/vn";
export { default as PlayIcon } from "./plugins/play";
export { default as TimeIcon } from "./plugins/time";
export { default as Start } from "./plugins/start";
export { default as Progress } from "./plugins/progress";
export { default as Loading } from "./plugins/loading";
export { default as VolumeIcon } from "./plugins/volume";
export { default as FullscreenIcon } from "./plugins/fullscreen";
export { default as CssFullscreenIcon } from "./plugins/cssFullScreen";
export { default as TextTrack } from "./plugins/track";
export { default as HeatMap } from "./plugins/heatmap";
export type SwitchUrlOptions = import('./player').SwitchUrlOptions;
export type IPlayerOptions = import('./defaultConfig').IPlayerOptions;
export type IDefinition = import('./defaultConfig').IDefinition;
export type IVideoProxy = any;
export type IBasePluginOptions = import('./plugin/basePlugin').IBasePluginOptions;
export type IPluginOptions = import('./plugin/plugin').IPluginOptions;
export type IError = import('./error').IError;
export type IXGI18nText = import('./lang/i18n').IXGI18nText;
import PresetPlayer from "./index.umd";
import Player from "./player";
import BasePlugin from "./plugin/basePlugin";
import Plugin from "./plugin/plugin";
import * as Events from "./events";
import Errors from "./error";
import Sniffer from "./utils/sniffer";
import Util from "./utils/util";
import STATE_CLASS from "./stateClassMap";
import I18N from "./lang/i18n";
import { STATES } from "./state";
import { InstManager } from "./instManager";
export { PresetPlayer as default, Player as SimplePlayer, BasePlugin, Plugin, Events, Errors, Sniffer, Util, STATE_CLASS, I18N, STATES, InstManager };
export { default as Danmu, DanmuIcon, DanmuPanel } from "./plugins/danmu";