Skip to content

procxy / ParentToChildMessage

Type Alias: ParentToChildMessage

ts
type ParentToChildMessage = 
  | InitMessage
  | Request
  | DisposeRequest
  | EventSubscribe
  | EventUnsubscribe
  | CallbackResult
  | CallbackError
  | PropertyResult
  | HandleMessage;

Defined in: src/shared/protocol.ts:213

Union type of all IPC messages sent from parent to child.

Released under the MIT License.