MCPcopy Index your code
hub / github.com/electron/devtron / IpcEventData

Interface IpcEventData

src/types/shared.ts:19–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17};
18
19export interface IpcEventData {
20 direction: Direction;
21 channel: Channel;
22 args: any[];
23 timestamp: number;
24 method?: string;
25 serviceWorkerDetails?: ServiceWorkerDetails;
26 responseTime?: number; // To track response time for `sendSync` and `invoke` methods
27 uuid?: UUID; // UUID to match requests and responses (for `invoke` and `sendSync` methods on `ipcRenderer`)
28}
29
30export type LogLevelString = 'debug' | 'info' | 'warn' | 'error' | 'none';
31

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected