LogEntry interface presentation exported

Last updated: 2026-03-04T23:21:38.426Z

Metrics

LOC: 5 Complexity: 1 Params: 0

Signature

interface LogEntry

Summary

A structured log entry for display.

Source Code

export interface LogEntry {
  time: string;
  text: string;
  type: string;
}

No outgoing dependencies.

Impact (Incoming)

graph LR LogEntry["LogEntry"] LogLevel["LogLevel"] LogViewerVariant["LogViewerVariant"] makeEntry["makeEntry"] LogLevel -->|uses| LogEntry LogViewerVariant -->|uses| LogEntry makeEntry -->|uses| LogEntry style LogEntry fill:#dbeafe,stroke:#2563eb,stroke-width:2px click LogEntry "081e40eef6aa200f.html" click LogLevel "c16627126b9be48e.html" click LogViewerVariant "3e8313bcae7abdc5.html" click makeEntry "c949813d0d804166.html"
SourceType
LogLevel uses
LogViewerVariant uses
makeEntry uses