UNPKG

react-native-theoplayer

Version:

A THEOplayer video component for react-native.

18 lines (16 loc) 255 B
/** * Dispatched when an event occurs. * * @category Events * @public */ export interface Event<TType extends string = string> { /** * The type of the event. */ type: TType; /** * The creation date of the event. */ date: Date; }