diff options
author | Ty Dunn <ty@tydunn.com> | 2023-07-10 15:25:34 -0700 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-07-10 15:25:34 -0700 |
commit | 845e4678b29dacaf926717989117a7d26b53e6ab (patch) | |
tree | 90dcecd61c45dda478f9d8af701cd1df5e60b2f7 /extension/schema | |
parent | 05f3a1f35f1d0f85df15ac78f2f285d54ab45118 (diff) | |
parent | f407524e0985807a30e5b08d5e8754d24c7a1291 (diff) | |
download | sncontinue-845e4678b29dacaf926717989117a7d26b53e6ab.tar.gz sncontinue-845e4678b29dacaf926717989117a7d26b53e6ab.tar.bz2 sncontinue-845e4678b29dacaf926717989117a7d26b53e6ab.zip |
Merge branch 'main' of github.com:continuedev/continue
Diffstat (limited to 'extension/schema')
-rw-r--r-- | extension/schema/FullState.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extension/schema/FullState.d.ts b/extension/schema/FullState.d.ts index 981e772e..abb0832d 100644 --- a/extension/schema/FullState.d.ts +++ b/extension/schema/FullState.d.ts @@ -32,6 +32,7 @@ export type Character = number; export type Contents = string; export type Editing = boolean; export type Pinned = boolean; +export type DisplayName = string; export type HighlightedRanges = HighlightedRangeContext[]; export type Name3 = string; export type Description1 = string; @@ -102,6 +103,7 @@ export interface HighlightedRangeContext { range: RangeInFileWithContents; editing: Editing; pinned: Pinned; + display_name: DisplayName; [k: string]: unknown; } /** |