Skip to content

Commit a75f989

Browse files
committed
feat: add DocumentHighlightKind enum
1 parent a0454f3 commit a75f989

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/enums.ts

+6
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,9 @@ export const NotificationType: typeof sourcegraph.NotificationType = {
1515
Log: 4,
1616
Success: 5,
1717
} 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

Comments
 (0)