Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/interfaces/IFocusEvent.ts
1028 views
1
// tslint:disable-next-line
2
import { UnixTimestamp } from './GenericTypes';
3
4
type NodeId = number;
5
type RelatedNodeId = NodeId;
6
7
export enum FocusEventType {
8
IN = 0,
9
OUT = 1,
10
}
11
12
export type IFocusEvent = [FocusEventType, NodeId, RelatedNodeId, UnixTimestamp];
13
14