UNPKG

timing-provider

Version:

An implementation of the timing provider specification.

15 lines (10 loc) 257 B
import { INoticeEvent } from './notice-event'; import { IRequestEvent } from './request-event'; export interface IInitEvent { client: { id: string; }; events: (INoticeEvent | IRequestEvent)[]; origin: number; type: 'init'; }