From 70097c490807312faceba75c9e91b9547d3e16b9 Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Thu, 13 Jan 2022 16:51:02 -0800 Subject: [PATCH] Fix type error in fourslash.ts (#47430) --- tests/cases/fourslash/fourslash.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cases/fourslash/fourslash.ts b/tests/cases/fourslash/fourslash.ts index 321fe72981b..b971a07b924 100644 --- a/tests/cases/fourslash/fourslash.ts +++ b/tests/cases/fourslash/fourslash.ts @@ -772,7 +772,7 @@ declare namespace FourSlashInterface { export interface VerifyInlayHintsOptions { text: string; position: number; - kind?: VerifyInlayHintKind; + kind?: ts.InlayHintKind; whitespaceBefore?: boolean; whitespaceAfter?: boolean; }