Chore: Various type improvements (#77877)

* more datasource type fixes

* more type updates
This commit is contained in:
Ashley Harrison
2023-11-09 17:39:02 +00:00
committed by GitHub
parent 323ee7c38c
commit 40fd80c46f
32 changed files with 138 additions and 200 deletions

View File

@ -184,7 +184,7 @@ export function getVariableTypes(): Array<{ label: string; value: VariableType }
}));
}
function getUrlValueForComparison(value: any): any {
function getUrlValueForComparison(value: unknown) {
if (isArray(value)) {
if (value.length === 0) {
value = undefined;