UNPKG

react-native-theoplayer

Version:

A THEOplayer video component for react-native.

17 lines 305 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; } //# sourceMappingURL=Event.d.ts.map