update deps

This commit is contained in:
Alexandru Dima 2021-03-05 16:28:40 +01:00
parent be6a4ef68c
commit c258dd0cec
No known key found for this signature in database
GPG key ID: 6E58D7B045760DA0
8 changed files with 10743 additions and 6031 deletions

11
monaco.d.ts vendored
View file

@ -170,15 +170,20 @@ declare namespace monaco.languages.typescript {
export interface Diagnostic extends DiagnosticRelatedInformation {
/** May store more in future. For now, this will simply be `true` to indicate when a diagnostic is an unused-identifier diagnostic. */
reportsUnnecessary?: {};
reportsDeprecated?: {};
source?: string;
relatedInformation?: DiagnosticRelatedInformation[];
}
interface DiagnosticRelatedInformation {
export interface DiagnosticRelatedInformation {
/** Diagnostic category: warning = 0, error = 1, suggestion = 2, message = 3 */
category: 0 | 1 | 2 | 3;
code: number;
/** TypeScriptWorker removes this to avoid serializing circular JSON structures. */
file: undefined;
/** TypeScriptWorker removes all but the `fileName` property to avoid serializing circular JSON structures. */
file:
| {
fileName: string;
}
| undefined;
start: number | undefined;
length: number | undefined;
messageText: string | DiagnosticMessageChain;