Skip to content

procxy / ChildToParentMessage

Type Alias: ChildToParentMessage

ts
type ChildToParentMessage = 
  | Response
  | EventMessage
  | InitSuccess
  | InitProperties
  | InitFailure
  | DisposeResponse
  | CallbackInvoke
  | PropertyGet
  | PropertySet
  | HandleAck
  | ChildDispose;

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

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

Released under the MIT License.