@dollhousemcp/mcp-server
Version:
DollhouseMCP - A Model Context Protocol (MCP) server that enables dynamic AI persona management from markdown files, allowing Claude and other compatible AI assistants to activate and switch between different behavioral personas.
16 lines • 680 B
TypeScript
/**
* Thin IMetricsSink adapter that bridges MetricsManager to the web console SSE stream.
*
* onSnapshot() calls the onSnapshot function from metricsRoutes.
* flush()/close() are no-ops — the SSE connections are managed by Express.
*/
import type { IMetricsSink, MetricSnapshot } from '../../metrics/types.js';
export declare class WebSSEMetricsSink implements IMetricsSink {
private readonly pushSnapshot;
readonly name = "WebSSEMetricsSink";
constructor(pushSnapshot: (snapshot: MetricSnapshot) => void);
onSnapshot(snapshot: MetricSnapshot): void;
flush(): Promise<void>;
close(): Promise<void>;
}
//# sourceMappingURL=WebSSEMetricsSink.d.ts.map