mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-15 00:14:20 +01:00
Remove consecutive blank lines from d.ts files
This commit is contained in:
Vendored
-6
@@ -2645,7 +2645,6 @@ declare module 'vscode' {
|
||||
TypeParameter = 25
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Symbol tags are extra annotations that tweak the rendering of a symbol.
|
||||
*/
|
||||
@@ -3055,7 +3054,6 @@ declare module 'vscode' {
|
||||
*/
|
||||
renameFile(oldUri: Uri, newUri: Uri, options?: { overwrite?: boolean, ignoreIfExists?: boolean }, metadata?: WorkspaceEditEntryMetadata): void;
|
||||
|
||||
|
||||
/**
|
||||
* Get all text edits grouped by resource.
|
||||
*
|
||||
@@ -3964,7 +3962,6 @@ declare module 'vscode' {
|
||||
resolveCompletionItem?(item: T, token: CancellationToken): ProviderResult<T>;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* A document link is a range in a text document that links to an internal or external resource, like another
|
||||
* text document or a web site.
|
||||
@@ -5657,7 +5654,6 @@ declare module 'vscode' {
|
||||
private constructor(id: string, label: string);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* A structure that defines a task kind in the system.
|
||||
* The value must be JSON-stringifyable.
|
||||
@@ -8957,7 +8953,6 @@ declare module 'vscode' {
|
||||
readonly files: ReadonlyArray<{ oldUri: Uri, newUri: Uri }>;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* An event describing a change to the set of [workspace folders](#workspace.workspaceFolders).
|
||||
*/
|
||||
@@ -10641,7 +10636,6 @@ declare module 'vscode' {
|
||||
*/
|
||||
export let breakpoints: Breakpoint[];
|
||||
|
||||
|
||||
/**
|
||||
* An [event](#Event) which fires when the [active debug session](#debug.activeDebugSession)
|
||||
* has changed. *Note* that the event also fires when the active debug session changes
|
||||
|
||||
Vendored
-8
@@ -78,7 +78,6 @@ declare module 'vscode' {
|
||||
readonly removed: string[];
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Options to be used when getting a session from an [AuthenticationProvider](#AuthenticationProvider).
|
||||
*/
|
||||
@@ -1018,8 +1017,6 @@ declare module 'vscode' {
|
||||
|
||||
//#endregion
|
||||
|
||||
|
||||
|
||||
//#region Terminal link handlers https://github.com/microsoft/vscode/issues/91606
|
||||
|
||||
export namespace window {
|
||||
@@ -1534,7 +1531,6 @@ declare module 'vscode' {
|
||||
|
||||
export interface CustomTextEditorProvider {
|
||||
|
||||
|
||||
/**
|
||||
* Handle when the underlying resource for a custom editor is renamed.
|
||||
*
|
||||
@@ -1552,7 +1548,6 @@ declare module 'vscode' {
|
||||
|
||||
//#endregion
|
||||
|
||||
|
||||
//#region allow QuickPicks to skip sorting: https://github.com/microsoft/vscode/issues/73904
|
||||
|
||||
export interface QuickPick<T extends QuickPickItem> extends QuickInput {
|
||||
@@ -1841,7 +1836,6 @@ declare module 'vscode' {
|
||||
preloads?: Uri[];
|
||||
}
|
||||
|
||||
|
||||
export interface NotebookCellsChangeData {
|
||||
readonly start: number;
|
||||
readonly deletedCount: number;
|
||||
@@ -2040,7 +2034,6 @@ declare module 'vscode' {
|
||||
|
||||
//#endregion
|
||||
|
||||
|
||||
//#region @eamodio - timeline: https://github.com/microsoft/vscode/issues/84297
|
||||
|
||||
export class TimelineItem {
|
||||
@@ -2273,7 +2266,6 @@ declare module 'vscode' {
|
||||
|
||||
//#endregion
|
||||
|
||||
|
||||
//#region https://github.com/microsoft/vscode/issues/91555
|
||||
|
||||
export enum StandardTokenType {
|
||||
|
||||
Reference in New Issue
Block a user