Type Alias: EventLogEntry — Kata docs
Kata docs

kata-framework


Type Alias: EventLogEntry

type EventLogEntry = 
  | {
  actionIndex: number;
  sceneId: string;
  timestamp: number;
  type: "update";
}
  | {
  sceneId: string;
  timestamp: number;
  type: "end";
}
  | {
  command: any;
  timestamp: number;
  type: "audio";
}
  | {
  error: any;
  timestamp: number;
  type: "error";
};

Defined in: packages/kata-devtools/src/types.ts:52