UNPKG

timing-provider

Version:

An implementation of the timing provider specification.

4 lines (2 loc) 179 B
import { IPingEvent, IPongEvent, IUpdateEvent } from '../interfaces'; export type TIncomingDataChannelEvent = ((IPingEvent | IPongEvent) & { timestamp: number }) | IUpdateEvent;