@graphql-mesh/cache-localforage
Version:
12 lines (11 loc) • 520 B
text/typescript
import type { KeyValueCache, KeyValueCacheSetOptions, MeshPubSub, YamlConfig } from '@graphql-mesh/types';
export default class LocalforageCache<V = any> implements KeyValueCache<V> {
private localforage;
constructor(config?: YamlConfig.LocalforageConfig & {
pubsub?: MeshPubSub;
});
get(key: string): Promise<V>;
getKeysByPrefix(prefix: string): Promise<string[]>;
set(key: string, value: V, options?: KeyValueCacheSetOptions): Promise<any>;
delete(key: string): Promise<boolean>;
}