UNPKG

xgplayer

Version:
20 lines (19 loc) 399 B
export default Enter; export type IEnterConfig = { [propName: string]: any; innerHtml?: string; }; /** * @typedef { { * innerHtml?: string, * [propName: string]: any * } } IEnterConfig */ declare class Enter extends Plugin { /** * @type IEnterConfig */ static get defaultConfig(): IEnterConfig; render(): HTMLElement; } import Plugin from "../../plugin";