Skip to content

Commit

Permalink
some jsdoc, #39441
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Jun 15, 2021
1 parent de63c37 commit a02815e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/vs/vscode.proposed.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1382,12 +1382,15 @@ declare module 'vscode' {

export interface CompletionItemLabel {
/**
* The function or variable. Rendered leftmost.
* The name of this completion item. By default
* this is also the text that is inserted when selecting
* this completion.
*/
name: string;

/**
* The parameters without the return type. Render after `name`.
* The signature of this completion item. Will be rendered right after the
* {@link CompletionItemLabel.name name}.
*/
signature?: string;

Expand Down

0 comments on commit a02815e

Please sign in to comment.