Skip to content

Commit 8f10b21

Browse files
authored
Temporarily comment out tuple type annotations (microsoft#156213)
These seem to be breaking out api generation for the website. Commenting them out for now
1 parent cf145a8 commit 8f10b21

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/vscode-dts/vscode.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6019,7 +6019,7 @@ declare module 'vscode' {
60196019
* To get an instance of a `DiagnosticCollection` use
60206020
* {@link languages.createDiagnosticCollection createDiagnosticCollection}.
60216021
*/
6022-
export interface DiagnosticCollection extends Iterable<[uri: Uri, diagnostics: readonly Diagnostic[]]> {
6022+
export interface DiagnosticCollection extends Iterable<[/*uri:*/ Uri, /*diagnostics:*/ readonly Diagnostic[]]> {
60236023

60246024
/**
60256025
* The name of this diagnostic collection, for instance `typescript`. Every diagnostic
@@ -10159,7 +10159,7 @@ declare module 'vscode' {
1015910159
* data transfer. These additional mime types will only be included in the `handleDrop` when the the drag was initiated from
1016010160
* an element in the same drag and drop controller.
1016110161
*/
10162-
export class DataTransfer implements Iterable<[mimeType: string, item: DataTransferItem]> {
10162+
export class DataTransfer implements Iterable<[/*mimeType:*/ string, /*item:*/ DataTransferItem]> {
1016310163
/**
1016410164
* Retrieves the data transfer item for a given mime type.
1016510165
*
@@ -10189,7 +10189,7 @@ declare module 'vscode' {
1018910189
/**
1019010190
* Get a new iterator with the `[mime, item]` pairs for each element in this data transfer.
1019110191
*/
10192-
[Symbol.iterator](): IterableIterator<[mimeType: string, item: DataTransferItem]>;
10192+
[Symbol.iterator](): IterableIterator<[/*mimeType:*/ string, /*item:*/ DataTransferItem]>;
1019310193
}
1019410194

1019510195
/**
@@ -10858,7 +10858,7 @@ declare module 'vscode' {
1085810858
/**
1085910859
* A collection of mutations that an extension can apply to a process environment.
1086010860
*/
10861-
export interface EnvironmentVariableCollection extends Iterable<[variable: string, mutator: EnvironmentVariableMutator]> {
10861+
export interface EnvironmentVariableCollection extends Iterable<[/*variable:*/ string, /*mutator:*/ EnvironmentVariableMutator]> {
1086210862
/**
1086310863
* Whether the collection should be cached for the workspace and applied to the terminal
1086410864
* across window reloads. When true the collection will be active immediately such when the
@@ -15737,7 +15737,7 @@ declare module 'vscode' {
1573715737
* Collection of test items, found in {@link TestItem.children} and
1573815738
* {@link TestController.items}.
1573915739
*/
15740-
export interface TestItemCollection extends Iterable<[id: string, testItem: TestItem]> {
15740+
export interface TestItemCollection extends Iterable<[/*id:*/ string, /*testItem:*/ TestItem]> {
1574115741
/**
1574215742
* Gets the number of items in the collection.
1574315743
*/

0 commit comments

Comments
 (0)