any --> unknown

This commit is contained in:
RMidhunSuresh 2021-11-09 17:34:16 +05:30
parent eef116e26b
commit 4c5d028509

View file

@ -20,7 +20,7 @@ import {LogLevel, LogFilter} from "./LogFilter.js";
import {Platform} from "../platform/web/Platform.js";
// todo: move this to LogItem?
type LabelOrValues = string | {l: string; [key: string]: any};
type LabelOrValues = string | {l: string; [key: string]: unknown};
export abstract class BaseLogger {
protected _openItems: Set<LogItem>;