Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions types/list.js/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ declare namespace List {

type Event =
| "updated"
| "parseComplete"
| "filterStart"
| "filterComplete"
| "searchStart"
Expand Down
1 change: 1 addition & 0 deletions types/list.js/list.js-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ list.on("searchComplete", list => {});
list.on("sortStart", list => {});
list.on("sortComplete", list => {});
list.on("updated", list => {}).clear();
list.on("parseComplete", list => {});
// @ts-expect-error
list.on("invalid", list => {});

Expand Down
4 changes: 3 additions & 1 deletion types/vscode/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/

/**
* Type Definition for Visual Studio Code 1.118 Extension API
* Type Definition for Visual Studio Code 1.120 Extension API
* See https://code.visualstudio.com/api for more information
*/

Expand Down Expand Up @@ -12254,6 +12254,8 @@ declare module 'vscode' {
/**
* Get the children of `element` or root if no element is passed.
*
* *Note:* The result is not mutated by the API consumer; readonly arrays may be cast to `T[]`.
*
* @param element The element from which the provider gets children. Can be `undefined`.
* @returns Children of `element` or root if no element is passed.
*/
Expand Down
2 changes: 1 addition & 1 deletion types/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@types/vscode",
"version": "1.118.9999",
"version": "1.120.9999",
"nonNpm": "conflict",
"nonNpmDescription": "TypeScript definitions for the Visual Studio Code Extension API",
"projects": [
Expand Down