UNPKG

@aller/blink

Version:

A library for tracking user behaviour.

8 lines (7 loc) 232 B
import { VideoTimeEvent } from '../utils/video-event-time'; export interface VideoState { events: VideoTimeEvent[]; } export default function video(state: VideoState | undefined, action: any): { events: VideoTimeEvent[]; };