- Full-featured monitoring dashboard for local web apps - Real-time status tracking with uptime percentages - Visual sparklines for status history - Add/Edit/Delete apps dynamically - Categories and color coding - Auto-refresh every 30 seconds - API endpoints for apps and status management
9 lines
263 B
TypeScript
9 lines
263 B
TypeScript
type Handler = (...evts: any[]) => void;
|
|
export type MittEmitter<T> = {
|
|
on(type: T, handler: Handler): void;
|
|
off(type: T, handler: Handler): void;
|
|
emit(type: T, ...evts: any[]): void;
|
|
};
|
|
export default function mitt(): MittEmitter<string>;
|
|
export {};
|