Interface IActorReply<A, I, T, O, TS>

Data interface for holding an actor and a promise to a reply from that actor.

interface IActorReply<A, I, T, O, TS> {
    actor: A;
    reply: Promise<TestResult<T, TS>>;
}

Type Parameters

Properties

Properties

actor: A
reply: Promise<TestResult<T, TS>>