@sprucelabs/spruce-cli
Version:
Command line interface for building Spruce skills.
14 lines (13 loc) • 500 B
TypeScript
import { SettingsService } from '@sprucelabs/spruce-skill-utils';
export default class EventCacheService {
protected settings: SettingsService<string>;
constructor(settings: SettingsService);
getLastSyncOptions(): any;
setLastSyncCache(options: {
shouldSyncOnlyCoreEvents?: boolean | null;
shouldOnlySyncRemoteEvents?: boolean | null;
}): void;
setListenerCache(value: Record<string, any>): void;
clearListenerCache(): void;
getListenerCache(): any;
}