chore(typescript): avoid object type
parent
6c3b38247a
commit
a9c108fe00
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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[]
|
||||
|
|
Loading…
Reference in New Issue