mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 10:38:59 +01:00
identify optional properties, #6907
This commit is contained in:
@@ -781,7 +781,7 @@ export class CodeLens {
|
||||
export class ParameterInformation {
|
||||
|
||||
label: string;
|
||||
documentation: string;
|
||||
documentation?: string;
|
||||
|
||||
constructor(label: string, documentation?: string) {
|
||||
this.label = label;
|
||||
@@ -792,7 +792,7 @@ export class ParameterInformation {
|
||||
export class SignatureInformation {
|
||||
|
||||
label: string;
|
||||
documentation: string;
|
||||
documentation?: string;
|
||||
parameters: ParameterInformation[];
|
||||
|
||||
constructor(label: string, documentation?: string) {
|
||||
@@ -869,7 +869,7 @@ export class CompletionItem {
|
||||
|
||||
export class CompletionList {
|
||||
|
||||
isIncomplete: boolean;
|
||||
isIncomplete?: boolean;
|
||||
|
||||
items: vscode.CompletionItem[];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user