Represents the result of a single call to a mock function with a return value.

interface MockResultReturn<T> {
    type: "return";
    value: T;
}

Type Parameters

  • T

Properties

Properties

type: "return"
value: T