chore(typescript): avoid object type

pull/5690/head
Pavel Zavora 2021-03-08 21:41:13 +01:00
parent 6c3b38247a
commit a9c108fe00
2 changed files with 3 additions and 3 deletions

View File

@ -474,7 +474,7 @@ export interface LogItem {
username?: string
host?: string
duration?: string
tag?: object
field?: object
tag?: Record<string, unknown>
field?: Record<string, unknown>
cluster?: string
}

View File

@ -41,7 +41,7 @@ export interface LogsState {
currentNamespace: Namespace | null
timeRange: TimeRange
histogramQueryConfig: QueryConfig | null
histogramData: object[]
histogramData: Array<Record<string, unknown>>
tableQueryConfig: QueryConfig | null
tableData: TableData
filters: Filter[]