@squidcloud/client
    Preparing search index...

    Type Alias ExecuteFunctionCacheLookupResult<ValueType>

    ExecuteFunctionCacheLookupResult:
        | { found: true; value: ValueType }
        | { found: false }

    Result object returned from a cache lookup.

    Type Parameters

    • ValueType

    Type declaration

    • { found: true; value: ValueType }
      • found: true

        Indicates that the value was found in the cache.

      • value: ValueType

        The cached value.

    • { found: false }
      • found: false

        Indicates that the value was not found in the cache.