import { Event } from './Event'; import { HrTime } from '../common/Time'; /** * Represents a timed event. * A timed event is an event with a timestamp. */ export interface TimedEvent extends Event { time: HrTime; }