1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00

Adds typechecking with typescript (#2101)

* Fixes all other vue errors

* Adds typescheck

* Fix pnpm

* Fix pnpm again for cache
This commit is contained in:
Amir Raminfar
2023-03-29 11:53:15 -07:00
committed by GitHub
parent 804bd5b9e1
commit e84f0cdb97
4 changed files with 38 additions and 13 deletions

View File

@@ -127,6 +127,10 @@ export class SkippedLogsEntry extends LogEntry<string> {
public get totalSkipped(): number {
return this._totalSkipped;
}
public get lastSkippedItem(): LogEntry<string | JSONObject> {
return this.lastSkipped;
}
}
export function asLogEntry(event: LogEvent): LogEntry<string | JSONObject> {