Comunica
    Preparing search index...

    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 extends Actor<I, T, O, TS>,
        I extends IAction,
        T extends IActorTest,
        O extends IActorOutput,
        TS = undefined,
    > {
        actor: A;
        reply: Promise<TestResult<T, TS>>;
    }

    Type Parameters

    Index

    Properties

    Properties

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