UNPKG

react-native-theoplayer

Version:

A THEOplayer video component for react-native.

10 lines (8 loc) 211 B
import type { Event } from './Event'; /** * The function to be executed when an event occurred. * * @category Events * @public */ export type EventListener<TEvent extends Event> = (event: TEvent) => void;