@squidcloud/client
    Preparing search index...

    Interface ExecuteFunctionCachedResult<T>

    A single cached result of a function call.

    interface ExecuteFunctionCachedResult<T> {
        args: unknown[];
        cacheTimeMillis: number;
        result: T;
    }

    Type Parameters

    • T
    Index

    Properties

    args: unknown[]

    Arguments used for the function call.

    cacheTimeMillis: number

    Time (in ms) when the result was cached.

    result: T

    The result value returned by the function.