api comments

pull/131982/head
Johannes Rieken 2021-08-31 09:04:51 +02:00
parent 0d0edb324c
commit 1c5dde4797
No known key found for this signature in database
GPG Key ID: 96634B5AF12F8798
2 changed files with 6 additions and 2 deletions

View File

@ -27,6 +27,6 @@
{
"kind": 2,
"language": "github-issues",
"value": "$repo $milestone is:open label:api-proposal "
"value": "$repo $milestone is:open label:api-proposal sort:created-asc"
}
]

View File

@ -1044,6 +1044,9 @@ declare module 'vscode' {
export interface DragAndDropController<T> extends Disposable {
readonly supportedTypes: string[];
// todo@API maybe
// onWillDrop(target: T): Thenable<TreeDataTransfer>;
/**
* Extensions should fire `TreeDataProvider.onDidChangeTreeData` for any elements that need to be refreshed.
*
@ -2882,6 +2885,7 @@ declare module 'vscode' {
text: string;
detail: string;
command: Command | undefined;
// accessibilityInformation?: AccessibilityInformation; TODO@API
dispose(): void;
}