Get rid of any.

This commit is contained in:
baldo 2022-08-25 22:14:59 +02:00
parent a1553ac0bf
commit 0e30ec1f96

View file

@ -695,7 +695,13 @@ export type NodesFilter = {
onlineState?: OnlineState;
};
export const NODES_FILTER_FIELDS = {
export const NODES_FILTER_FIELDS: Record<
keyof NodesFilter,
| BooleanConstructor
| StringConstructor
| typeof MonitoringState
| typeof OnlineState
> = {
hasKey: Boolean,
hasCoords: Boolean,
monitoringState: MonitoringState,