Represents the result of a single incomplete call to a mock function.

interface MockResultIncomplete {
    type: "incomplete";
    value: undefined;
}

Properties

Properties

type: "incomplete"
value: undefined