UNPKG

@gamesberry/karmyc-core

Version:

A flexible and powerful layout management system for React applications

15 lines (14 loc) 394 B
interface HistoryEntry { id: string; type: string; payload: any; timestamp: number; description: string; } interface SpaceHistoryState { entries: HistoryEntry[]; addEntry: (entry: HistoryEntry) => void; clearHistory: () => void; } export declare const spaceHistoryStore: import("zustand").UseBoundStore<import("zustand").StoreApi<SpaceHistoryState>>; export {};