/** * @type {import("artplayer/types/icons".Icons)} */ export const icons = { screenshot: '', play: '', pause: '', volume: '', fullscreenOff: '', fullscreenOn: '', }; export const backButton = { name: "back-button", index: 10, position: "top", html: "

Komi-san wa, Komyushou desu.

Episode 1

", // tooltip: "Your Button", click: function (...args) { console.info("click", args); }, mounted: function (...args) { console.info("mounted", args); }, }; export const seekBackward = { index: 10, name: "fast-rewind", position: "left", html: '', tooltip: "Backward 5s", click: function () { art.backward = 5; }, }; export const seekForward = { index: 11, name: "fast-forward", position: "left", html: '', tooltip: "Forward 5s", click: function () { art.forward = 5; }, }; // /** // * @type {import("artplayer/types/component").ComponentOption} // */ // export const