From 98b6a5763dcb7072e6f9b5b84c50cb3e6b56fdd9 Mon Sep 17 00:00:00 2001 From: Vladimir Vagaytsev Date: Wed, 15 May 2024 13:28:46 +0200 Subject: [PATCH] chore: use `unknown` instead of `any` if possible --- core/src/template-string/functions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/template-string/functions.ts b/core/src/template-string/functions.ts index 8a42e2a40b..645481ae2e 100644 --- a/core/src/template-string/functions.ts +++ b/core/src/template-string/functions.ts @@ -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 }