redux-micro-frontend
Version:
This is a library for using Redux to managing state for self-contained apps in a Micro-Frontend architecture. Each self-contained isolated app can have its own isolated and decoupled Redux store. The componentized stores interact with a global store for e
8 lines (7 loc) • 328 B
TypeScript
import { AbstractLogger } from "./abstract.logger";
export declare class ConsoleLogger extends AbstractLogger {
private _debugMode;
constructor(_debugMode?: boolean);
processEvent(source: string, eventName: string, properties: any): void;
processException(source: string, error: Error, properties: any): void;
}