Interface IpcIncomingMessage

Represents a message received from a client through the IPC channel. Contains the client's identifier and the actual message content.

interface IpcIncomingMessage {
    id: string;
    msg: string;
}

Hierarchy

  • Pick<Required<BaseMessage>, "id" | "msg">
    • IpcIncomingMessage

Properties

Properties

id: string

Unique identifier for the client connection

msg: string

Payload data encoded as a base64 string