chore: 添加换行

youngjuning-patch-1
洛竹 3 years ago
parent e5e781daa5
commit 1f372d6959

21
vscode.d.ts vendored

@ -10,29 +10,43 @@ declare module vscode {
export const version: string;
/**
* UI
*
*
* Represents a reference to a command. Provides a title which
* will be used to represent a command in the UI and, optionally,
* an array of arguments which will be passed to the command handler
* function when invoked.
*
* @maintainer {@link https://github.com/youngjuning @youngjuning}
*/
export interface Command {
/**
* `save`
*
* Title of the command, like `save`.
*/
title: string;
/**
* The identifier of the actual command handler.
*
*
* The identifier of the actual command handler.
*
* @see {@link commands.registerCommand}
*/
command: string;
/**
* A tooltip for the command, when represented in the UI.
* UI
*
* A tooltip for the command, when represented in the UI.
*/
tooltip?: string;
/**
*
*
* Arguments that the command handler should be
* invoked with.
*/
@ -6925,7 +6939,8 @@ declare module vscode {
}
/**
* Namespace for tasks functionality.
* task
*
* @maintainer {@link https://github.com/liuqh0609 @liuqh0609}
*/
export namespace tasks {

Loading…
Cancel
Save