@fleek-platform/agents-ui
Version:
The Fleek Platform Agents UI provides a simple interface for deploying, monitoring, and configuring your agents––making management straightforward
9 lines (8 loc) • 401 B
TypeScript
import type { AgentUIEventName, CaptureEventFn, EventProperties } from '@config/events';
interface EventStore {
captureEvent?: CaptureEventFn;
setCaptureEvent: (fn: CaptureEventFn) => void;
dispatchEvent: (event: AgentUIEventName, payload?: EventProperties) => void;
}
export declare const useEventStore: import("zustand").UseBoundStore<import("zustand").StoreApi<EventStore>>;
export {};