UNPKG

426 BTypeScriptView Raw
1import { AutomationClient } from "./automationClient";
2import { EventStore } from "./spi/event/EventStore";
3/**
4 * Globally available instance of {EventStore} to be used across the automation client.
5 * @type {InMemoryEventStore}
6 */
7export declare function eventStore(): EventStore;
8export declare function setEventStore(newEventStore: EventStore): void;
9export declare function automationClientInstance(): AutomationClient;