Type Alias ActorMessage<T>
type ActorMessage<T extends MessageType> = {
data: RequestResponseMessageMap[T][0];
mustQueue?: boolean;
sourceMapId?: string | number | null;
targetMapId?: string | number | null;
type: T;
}
data: RequestResponseMessageMap[T][0];
mustQueue?: boolean;
sourceMapId?: string | number | null;
targetMapId?: string | number | null;
type: T;
}
Type Parameters
- T extends MessageType
Index
Properties
Was this helpful?
The message to be sent by the actor