chore: 添加换行

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

17
vscode.d.ts vendored

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

Loading…
Cancel
Save