1// tslint:disable-next-line 2import { UnixTimestamp } from './GenericTypes'; 3 4type NodeId = number; 5type RelatedNodeId = NodeId; 6 7export enum FocusEventType { 8 IN = 0, 9 OUT = 1, 10} 11 12export type IFocusEvent = [FocusEventType, NodeId, RelatedNodeId, UnixTimestamp]; 13 14