Skip to content

Commit

Permalink
fix: formatter func type
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-yarmosh committed Sep 25, 2024
1 parent 24c6af3 commit fd0ab7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/override/adopted-probes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ type Row = Omit<AdoptedProbe, 'isCustomCity' | 'tags' | 'systemTags' | 'altIps'
type AdoptedFieldDescription = {
connectedField: string,
shouldUpdateIfCustomCity: boolean,
formatter?: (connectedValue: unknown) => unknown
// eslint-disable-next-line @typescript-eslint/no-explicit-any
formatter?: (connectedValue: any) => unknown
}

export class AdoptedProbes {
Expand Down

0 comments on commit fd0ab7c

Please sign in to comment.