提交 df801d7c 编写于 作者: P Pine Wu

Clarify API

上级 d7232610
......@@ -371,22 +371,22 @@ export let completionKindFromString: {
export interface CompletionItemLabel {
/**
* The function or variable
* The function or variable. Rendered leftmost.
*/
name: string;
/**
* The signature, without the return type. is render directly after `name`
* The signature without the return type. Render after `name`.
*/
signature?: string;
/**
* The fully qualified name, like package name, file path etc
* The fully qualified name, like package name or file path. Rendered after `signature`.
*/
qualifier?: string;
/**
* The return-type of a function or type of a property, variable etc
* The return-type of a function or type of a property/variable. Rendered rightmost.
*/
type?: string;
}
......
......@@ -5199,19 +5199,19 @@ declare namespace monaco.languages {
export interface CompletionItemLabel {
/**
* The function or variable
* The function or variable. Rendered leftmost.
*/
name: string;
/**
* The signature, without the return type. is render directly after `name`
* The signature without the return type. Render after `name`.
*/
signature?: string;
/**
* The fully qualified name, like package name, file path etc
* The fully qualified name, like package name or file path. Rendered after `signature`.
*/
qualifier?: string;
/**
* The return-type of a function or type of a property, variable etc
* The return-type of a function or type of a property/variable. Rendered rightmost.
*/
type?: string;
}
......
......@@ -1387,22 +1387,22 @@ declare module 'vscode' {
export interface CompletionItemLabel {
/**
* The function or variable
* The function or variable. Rendered leftmost.
*/
name: string;
/**
* The signature, without the return type. is render directly after `name`
* The signature without the return type. Render after `name`.
*/
signature?: string;
/**
* The fully qualified name, like package name, file path etc
* The fully qualified name, like package name or file path. Rendered after `signature`.
*/
qualifier?: string;
/**
* The return-type of a function or type of a property, variable etc
* The return-type of a function or type of a property/variable. Rendered rightmost.
*/
type?: string;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册