From e10d30c8eaf41ad68b48f21c8d563d192b82afe8 Mon Sep 17 00:00:00 2001 From: Sebastien Filion Date: Tue, 24 Aug 2021 11:53:38 -0400 Subject: [PATCH] fix(typings): fix property name in DiagnosticMessageChain interface (#11821) --- cli/dts/lib.deno.unstable.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index fb5ed461cf..78f771ce1b 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -155,7 +155,7 @@ declare namespace Deno { } export interface DiagnosticMessageChain { - message: string; + messageText: string; category: DiagnosticCategory; code: number; next?: DiagnosticMessageChain[];