Skip to content

Commit

Permalink
chore: use unknown instead of any if possible
Browse files Browse the repository at this point in the history
  • Loading branch information
vvagaytsev committed May 15, 2024
1 parent 0f70859 commit 0876da8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/template-string/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import { mayContainTemplateString } from "./template-string.js"
import { dateHelperFunctionSpecs } from "./date-functions.js"

interface ExampleArgument {
input: any[]
output: any // Used to validate expected output
input: unknown[]
output: unknown // Used to validate expected output
skipTest?: boolean
}

Expand Down

0 comments on commit 0876da8

Please sign in to comment.