fix: slow types

This commit is contained in:
2025-08-14 23:57:47 +02:00
parent fab3476515
commit ca6a692631
3 changed files with 12 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
class Performance {
startedAt = performance.now();
startedAt: number = performance.now();
endedAt?: number;
duration?: number;
@@ -10,7 +10,7 @@ class Performance {
}
abstract class LogEvent {
readonly performance = new Performance();
readonly performance: Performance = new Performance();
data?: Record<string, any>;