/** * player state type interface * * author: db123 at db * creation: 28/4/2026 */ export interface PlayerEvents { onPlay?: () => void; onPause?: () => void; onEnd?: () => void; onError?: () => void; onBuffer?: () => void; }