waha / src /apps /chatwoot /cache /IConversationCache.ts
NitinBot002's picture
Upload 384 files
4327358 verified
import { public_conversation } from '@figuro/chatwoot-sdk';
export interface IConversationCache {
get(key: string): public_conversation | null;
set(key: string, value: public_conversation): void;
has(key: string): boolean;
delete(key: string): void;
clean(): void;
}