mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-10 02:02:35 -05:00
Merge from vscode dbe62be3266ffb6772a7f3db0bf61d63f4aa7f65 (#9337)
This commit is contained in:
13
src/vs/vscode.d.ts
vendored
13
src/vs/vscode.d.ts
vendored
@@ -4675,7 +4675,18 @@ declare module 'vscode' {
|
||||
* A code or identifier for this diagnostic.
|
||||
* Should be used for later processing, e.g. when providing [code actions](#CodeActionContext).
|
||||
*/
|
||||
code?: string | number;
|
||||
code?: string | number | {
|
||||
/**
|
||||
* A code or identifier for this diagnostic.
|
||||
* Should be used for later processing, e.g. when providing [code actions](#CodeActionContext).
|
||||
*/
|
||||
value: string | number;
|
||||
|
||||
/**
|
||||
* A target URI to open with more information about the diagnostic error.
|
||||
*/
|
||||
target: Uri;
|
||||
};
|
||||
|
||||
/**
|
||||
* An array of related diagnostic information, e.g. when symbol-names within
|
||||
|
||||
Reference in New Issue
Block a user