We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0454f3 commit a75f989Copy full SHA for a75f989
src/enums.ts
@@ -15,3 +15,9 @@ export const NotificationType: typeof sourcegraph.NotificationType = {
15
Log: 4,
16
Success: 5,
17
} as const
18
+
19
+export const DocumentHighlightKind: typeof sourcegraph.DocumentHighlightKind = {
20
+ Text: 'text' as sourcegraph.DocumentHighlightKind.Text,
21
+ Read: 'read' as sourcegraph.DocumentHighlightKind.Read,
22
+ Write: 'write' as sourcegraph.DocumentHighlightKind.Write,
23
+}
0 commit comments