@@ -541,7 +541,7 @@ declare module 'vscode' {
541
541
* The {@link TextEditorSelectionChangeKind change kind} which has triggered this
542
542
* event. Can be `undefined`.
543
543
*/
544
- readonly kind : TextEditorSelectionChangeKind | undefined
544
+ readonly kind : TextEditorSelectionChangeKind | undefined ;
545
545
}
546
546
547
547
/**
@@ -8137,14 +8137,14 @@ declare module 'vscode' {
8137
8137
* If this is provided, your extension should restore the editor from the backup instead of reading the file
8138
8138
* from the user's workspace.
8139
8139
*/
8140
- readonly backupId : string | undefined
8140
+ readonly backupId : string | undefined ;
8141
8141
8142
8142
/**
8143
8143
* If the URI is an untitled file, this will be populated with the byte data of that file
8144
8144
*
8145
8145
* If this is provided, your extension should utilize this byte data rather than executing fs APIs on the URI passed in
8146
8146
*/
8147
- readonly untitledDocumentData : Uint8Array | undefined
8147
+ readonly untitledDocumentData : Uint8Array | undefined ;
8148
8148
}
8149
8149
8150
8150
/**
@@ -12926,7 +12926,7 @@ declare module 'vscode' {
12926
12926
/**
12927
12927
* Event specific information.
12928
12928
*/
12929
- readonly body : any | undefined ;
12929
+ readonly body : any ;
12930
12930
}
12931
12931
12932
12932
/**
@@ -13917,12 +13917,12 @@ declare module 'vscode' {
13917
13917
/**
13918
13918
* The {@link AuthenticationSession AuthenticationSessions} of the {@link AuthenticationProvider} that have been added.
13919
13919
*/
13920
- readonly added : readonly AuthenticationSession [ ] | undefined
13920
+ readonly added : readonly AuthenticationSession [ ] | undefined ;
13921
13921
13922
13922
/**
13923
13923
* The {@link AuthenticationSession AuthenticationSessions} of the {@link AuthenticationProvider} that have been removed.
13924
13924
*/
13925
- readonly removed : readonly AuthenticationSession [ ] | undefined
13925
+ readonly removed : readonly AuthenticationSession [ ] | undefined ;
13926
13926
13927
13927
/**
13928
13928
* The {@link AuthenticationSession AuthenticationSessions} of the {@link AuthenticationProvider} that have been changed.
0 commit comments