lint fix.

This commit is contained in:
Miroslav Šedivý 2021-10-08 16:46:35 +02:00
parent 79856e29a1
commit 4d31836b93

View File

@ -26,7 +26,7 @@ export interface SystemAdmin {
export type SystemLogs = SystemLog[]
export interface SystemLog {
level: "debug" | "info" | "warn" | "error"
level: 'debug' | 'info' | 'warn' | 'error'
fields: Record<string, string>
message: string
}