Add a source property on Diagnostic

This commit is contained in:
Mohamed Hegazy
2017-04-20 13:22:55 -07:00
parent 75cdb47cfa
commit 5d7c75d88d
3 changed files with 13 additions and 4 deletions

View File

@@ -1824,15 +1824,20 @@ namespace ts.server.protocol {
*/
text: string;
/**
* The category of the diagnostic message, e.g. "error" vs. "warning"
*/
category: string;
/**
* The error code of the diagnostic message.
*/
code?: number;
/**
* The category of the diagnostic message, e.g. "error" vs. "warning"
* The name of the plugin reporting the message.
*/
category: string;
source?: string;
}
export interface DiagnosticEventBody {