api comments

This commit is contained in:
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.
*
@ -2511,7 +2514,7 @@ declare module 'vscode' {
/**
* The file is readonly.
*
* *Note:* All `FileStat` from a `FileSystemProvider` that is registered with
* *Note:* All `FileStat` from a `FileSystemProvider` that is registered with
* the option `isReadonly: true` will be implicitly handled as if `FilePermission.Readonly`
* is set. As a consequence, it is not possible to have a readonly file system provider
* registered where some `FileStat` are not readonly.
@ -2882,6 +2885,7 @@ declare module 'vscode' {
text: string;
detail: string;
command: Command | undefined;
// accessibilityInformation?: AccessibilityInformation; TODO@API
dispose(): void;
}