We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c23c379 commit af53414Copy full SHA for af53414
site/src/types/preview.ts
@@ -1,5 +1,10 @@
1
// Code generated by 'guts'. DO NOT EDIT.
2
3
+// From types/diagnostics.go
4
+export interface DiagnosticExtra {
5
+ readonly code: string;
6
+}
7
+
8
// From types/diagnostics.go
9
export type DiagnosticSeverityString = "error" | "warning";
10
@@ -13,6 +18,7 @@ export interface FriendlyDiagnostic {
13
18
readonly severity: DiagnosticSeverityString;
14
19
readonly summary: string;
15
20
readonly detail: string;
21
+ readonly extra: DiagnosticExtra;
16
22
}
17
23
24
// From types/value.go
0 commit comments