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, "kind": 2,
"language": "github-issues", "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 { export interface DragAndDropController<T> extends Disposable {
readonly supportedTypes: string[]; readonly supportedTypes: string[];
// todo@API maybe
// onWillDrop(target: T): Thenable<TreeDataTransfer>;
/** /**
* Extensions should fire `TreeDataProvider.onDidChangeTreeData` for any elements that need to be refreshed. * Extensions should fire `TreeDataProvider.onDidChangeTreeData` for any elements that need to be refreshed.
* *
@ -2511,7 +2514,7 @@ declare module 'vscode' {
/** /**
* The file is readonly. * 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` * 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 * is set. As a consequence, it is not possible to have a readonly file system provider
* registered where some `FileStat` are not readonly. * registered where some `FileStat` are not readonly.
@ -2882,6 +2885,7 @@ declare module 'vscode' {
text: string; text: string;
detail: string; detail: string;
command: Command | undefined; command: Command | undefined;
// accessibilityInformation?: AccessibilityInformation; TODO@API
dispose(): void; dispose(): void;
} }