Represents the result of a single call to a mock function with a thrown error.

interface MockResultThrow {
    type: "throw";
    value: any;
}

Properties

Properties

type: "throw"
value: any