From 353f4db6741c86aff1876e51024b3efad3b8961d Mon Sep 17 00:00:00 2001 From: Christopher Schleiden Date: Wed, 23 Nov 2022 09:08:03 -0800 Subject: [PATCH] Name the tuple values --- actions-languageservice/src/utils/find-token.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions-languageservice/src/utils/find-token.test.ts b/actions-languageservice/src/utils/find-token.test.ts index 4d657ab..74cb9e2 100644 --- a/actions-languageservice/src/utils/find-token.test.ts +++ b/actions-languageservice/src/utils/find-token.test.ts @@ -5,7 +5,7 @@ import {nullTrace} from "../nulltrace"; import {getPositionFromCursor} from "../test-utils/cursor-position"; import {findToken} from "./find-token"; -type testTokenInfo = [string | null, TokenType, string?]; +type testTokenInfo = [definitionKey: string | null, tokenType: TokenType, literalValue?: string]; function getTokenInfo(token: TemplateToken | null): testTokenInfo | null { if (!token) {