UNPKG

react-native-theoplayer

Version:

A THEOplayer video component for react-native.

9 lines (7 loc) 223 B
import type { Event } from 'react-native-theoplayer'; export class BaseEvent<TType extends string = string> implements Event<TType> { constructor( readonly type: TType, readonly date: Date = new Date(), ) {} }