UNPKG

debt-collector

Version:

a nodejs tool to identify, track and mesure technical debt

12 lines (11 loc) 343 B
export type LogLevel = 'info' | 'warn' | 'error' | 'debug'; export interface LogMessage { id: string; level: LogLevel; message: string; timestamp: string; data?: string | number | boolean | object; } export declare const LogViewer: ({ logs }: { logs: LogMessage[]; }) => import("react/jsx-runtime").JSX.Element | null;