Interface InterceptResultBase

Base class for objects created by @tapjs/intercept!Interceptor#intercept

interface InterceptResultBase {
    at?: CallSiteLike;
    receiver: any;
    stack?: string;
    success: boolean;
    threw: boolean;
    value: any;
}

Hierarchy (view full)

Properties

receiver: any
stack?: string
success: boolean
threw: boolean
value: any

Generated using TypeDoc