liveperson-functions-client
Version:
JavaScript client for LivePerson Functions.
15 lines (14 loc) • 434 B
TypeScript
export interface ImplementedEvent {
name: string;
exp: number;
isImplemented: boolean;
skillId?: string;
}
export declare class IsImplementedCache {
private cacheDuration;
private cache;
constructor(cacheDuration: number);
get(eventName: string, skillId?: string): ImplementedEvent | undefined;
add(eventName: string, isImplemented: boolean, skillId?: string): void;
private removeFromCache;
}