effex-monorepo
    Preparing search index...

    Interface CacheGetOptions<A>

    Options for cache.get.

    interface CacheGetOptions<A> {
        initialData?: A;
    }

    Type Parameters

    • A
    Index

    Properties

    Properties

    initialData?: A

    Initial data to seed the cache entry with. When provided and no existing entry exists, the AsyncReadable is created with this value already populated (no initial fetch).