Skip to content

Commit 2c083a7

Browse files
committed
Fix errors in typings
1 parent 74f5177 commit 2c083a7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/vs/vscode.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ declare module 'vscode' {
541541
* The {@link TextEditorSelectionChangeKind change kind} which has triggered this
542542
* event. Can be `undefined`.
543543
*/
544-
readonly kind: TextEditorSelectionChangeKind | undefined
544+
readonly kind: TextEditorSelectionChangeKind | undefined;
545545
}
546546

547547
/**
@@ -8137,14 +8137,14 @@ declare module 'vscode' {
81378137
* If this is provided, your extension should restore the editor from the backup instead of reading the file
81388138
* from the user's workspace.
81398139
*/
8140-
readonly backupId: string | undefined
8140+
readonly backupId: string | undefined;
81418141

81428142
/**
81438143
* If the URI is an untitled file, this will be populated with the byte data of that file
81448144
*
81458145
* If this is provided, your extension should utilize this byte data rather than executing fs APIs on the URI passed in
81468146
*/
8147-
readonly untitledDocumentData: Uint8Array | undefined
8147+
readonly untitledDocumentData: Uint8Array | undefined;
81488148
}
81498149

81508150
/**
@@ -12926,7 +12926,7 @@ declare module 'vscode' {
1292612926
/**
1292712927
* Event specific information.
1292812928
*/
12929-
readonly body: any | undefined;
12929+
readonly body: any;
1293012930
}
1293112931

1293212932
/**
@@ -13917,12 +13917,12 @@ declare module 'vscode' {
1391713917
/**
1391813918
* The {@link AuthenticationSession AuthenticationSessions} of the {@link AuthenticationProvider} that have been added.
1391913919
*/
13920-
readonly added: readonly AuthenticationSession[] | undefined
13920+
readonly added: readonly AuthenticationSession[] | undefined;
1392113921

1392213922
/**
1392313923
* The {@link AuthenticationSession AuthenticationSessions} of the {@link AuthenticationProvider} that have been removed.
1392413924
*/
13925-
readonly removed: readonly AuthenticationSession[] | undefined
13925+
readonly removed: readonly AuthenticationSession[] | undefined;
1392613926

1392713927
/**
1392813928
* The {@link AuthenticationSession AuthenticationSessions} of the {@link AuthenticationProvider} that have been changed.

0 commit comments

Comments
 (0)