Node TAP
    Preparing search index...

    Interface CaptureResultBase<F>

    Base type of result objects generated by @tapjs/intercept!Interceptor#capture

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

    Type Parameters

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

      the function that was captured

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    receiver: Receiver<F>
    stack?: string