UNPKG

@wandelbots/wandelbots-js-react-components

Version:

React UI toolkit for building applications on top of the Wandelbots platform

12 lines 433 B
import type { LogLevel, LogMessage } from "./LogViewer"; export declare class LogStore { messages: LogMessage[]; constructor(); addMessage: (message: string, level?: LogLevel) => void; clearMessages: () => void; addInfo: (message: string) => void; addWarning: (message: string) => void; addError: (message: string) => void; addDebug: (message: string) => void; } //# sourceMappingURL=LogStore.d.ts.map