@@ -6019,7 +6019,7 @@ declare module 'vscode' {
6019
6019
* To get an instance of a `DiagnosticCollection` use
6020
6020
* {@link languages.createDiagnosticCollection createDiagnosticCollection}.
6021
6021
*/
6022
- export interface DiagnosticCollection extends Iterable<[uri: Uri, diagnostics: readonly Diagnostic[]]> {
6022
+ export interface DiagnosticCollection extends Iterable<[/* uri:*/ Uri, /* diagnostics:*/ readonly Diagnostic[]]> {
6023
6023
6024
6024
/**
6025
6025
* The name of this diagnostic collection, for instance `typescript`. Every diagnostic
@@ -10159,7 +10159,7 @@ declare module 'vscode' {
10159
10159
* data transfer. These additional mime types will only be included in the `handleDrop` when the the drag was initiated from
10160
10160
* an element in the same drag and drop controller.
10161
10161
*/
10162
- export class DataTransfer implements Iterable<[mimeType: string, item: DataTransferItem]> {
10162
+ export class DataTransfer implements Iterable<[/* mimeType:*/ string, /* item:*/ DataTransferItem]> {
10163
10163
/**
10164
10164
* Retrieves the data transfer item for a given mime type.
10165
10165
*
@@ -10189,7 +10189,7 @@ declare module 'vscode' {
10189
10189
/**
10190
10190
* Get a new iterator with the `[mime, item]` pairs for each element in this data transfer.
10191
10191
*/
10192
- [Symbol.iterator](): IterableIterator<[mimeType: string, item: DataTransferItem]>;
10192
+ [Symbol.iterator](): IterableIterator<[/* mimeType:*/ string, /* item:*/ DataTransferItem]>;
10193
10193
}
10194
10194
10195
10195
/**
@@ -10858,7 +10858,7 @@ declare module 'vscode' {
10858
10858
/**
10859
10859
* A collection of mutations that an extension can apply to a process environment.
10860
10860
*/
10861
- export interface EnvironmentVariableCollection extends Iterable<[variable: string, mutator: EnvironmentVariableMutator]> {
10861
+ export interface EnvironmentVariableCollection extends Iterable<[/* variable:*/ string, /* mutator:*/ EnvironmentVariableMutator]> {
10862
10862
/**
10863
10863
* Whether the collection should be cached for the workspace and applied to the terminal
10864
10864
* across window reloads. When true the collection will be active immediately such when the
@@ -15737,7 +15737,7 @@ declare module 'vscode' {
15737
15737
* Collection of test items, found in {@link TestItem.children} and
15738
15738
* {@link TestController.items}.
15739
15739
*/
15740
- export interface TestItemCollection extends Iterable<[id: string, testItem: TestItem]> {
15740
+ export interface TestItemCollection extends Iterable<[/* id:*/ string, /* testItem:*/ TestItem]> {
15741
15741
/**
15742
15742
* Gets the number of items in the collection.
15743
15743
*/
0 commit comments