UNPKG

@iyio/convo-lang

Version:

A conversational language.

11 lines (10 loc) 461 B
import { ConvoMemoryGraphStore, ConvoMemoryGraphStoreOptions } from "./ConvoMemoryGraphStore"; export interface ConvoLocalStorageGraphStoreOptions extends ConvoMemoryGraphStoreOptions { storeKey?: string; } export declare class ConvoLocalStorageGraphStore extends ConvoMemoryGraphStore { private readonly storeKey; constructor({ storeKey, ...options }: ConvoLocalStorageGraphStoreOptions); private save; saveChangesAsync(): Promise<void>; }