/** * ```js * import { pullFromCache } from '@amityco/ts-sdk' * const user = pullFromCache(["user", "foobar"]) * ``` * * Retrieves a {@link Amity.CacheEntry} object matching a given * {@link Amity.CacheKey}. The cache entry is not typed, so the * expected returned type must be passed manually. * * @param key the key matching the object to retrieve from cache * @returns the matching cache entry, or undefined. * * @category Cache API */ export declare const pullFromCache: (key: Amity.CacheKey) => Amity.CacheEntry | undefined; //# sourceMappingURL=pullFromCache.d.ts.map