Interface CaptureResultThrew<F>

Results of @tapjs/intercept!Interceptor#capture where function threw

interface CaptureResultThrew<F> {
    args: TupleUnion<FilterUnknown<OverloadParamsTuple<F>>>;
    at?: CallSiteLike;
    receiver: Receiver<F>;
    stack?: string;
    threw: true;
}

Type Parameters

  • F extends ((...a) => any)

    the function that was captured

Hierarchy (view full)

Properties

receiver: Receiver<F>
stack?: string
threw: true

Generated using TypeDoc