Comunica
    Preparing search index...

    Interface MockResultReturn<T>

    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
    Index

    Properties

    Properties

    type: "return"
    value: T