| 60 | export type SerialNumber = number; |
| 61 | |
| 62 | export interface IpcEventDataIndexed extends IpcEventData { |
| 63 | serialNumber: SerialNumber; |
| 64 | gotoSerialNumber?: SerialNumber; // For navigating to a specific event in the grid |
| 65 | } |
| 66 | |
| 67 | export type MessagePanel = |
| 68 | | { type: typeof MSG_TYPE.PONG } |
nothing calls this directly
no outgoing calls
no test coverage detected