Node TAP
    Preparing search index...

    Interface CaptureResultThrew<F>

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

    interface CaptureResultThrew<F extends (...a: any[]) => any> {
        args: TupleUnion<FilterUnknown<OverloadParamsTuple<F>>>;
        at?: CallSiteLike;
        receiver: Receiver<F>;
        stack?: string;
        threw: true;
    }

    Type Parameters

    • F extends (...a: any[]) => any

      the function that was captured

    Hierarchy (View Summary)

    Index

    Properties

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