even more better types

This commit is contained in:
2026-01-04 19:38:46 -05:00
parent 35ccdb5418
commit a935f220fc

View File

@@ -347,8 +347,8 @@ class LoggingConfigurationBase {
return this.#conversions;
}
getAllLoggers() {
return this.sources.values();
getAllLoggers(): Logging[] {
return this.sources.values().toArray();
}
get timeFormat(): TimeFormat { return this.#timeFormat }