Interface MessageEnvelope<P>

interface MessageEnvelope<P> {
    payload: P;
    type: string;
}

Type Parameters

  • P = any

Properties

Properties

payload: P
type: string