1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 23:34:47 -05:00

fix(typings): fix property name in DiagnosticMessageChain interface (#11821)

This commit is contained in:
Sebastien Filion 2021-08-24 11:53:38 -04:00 committed by GitHub
parent a7240c5091
commit e10d30c8ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -155,7 +155,7 @@ declare namespace Deno {
}
export interface DiagnosticMessageChain {
message: string;
messageText: string;
category: DiagnosticCategory;
code: number;
next?: DiagnosticMessageChain[];