-
Notifications
You must be signed in to change notification settings - Fork 13k
Add CompletionDetailsFull request #19689
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
//cc @amcasey |
@amcasey can you give this a quick try |
@Andy-MS we need to port this to release-2.6 as well. |
@@ -4846,6 +4846,7 @@ declare namespace ts.server.protocol { | |||
Close = "close", | |||
Completions = "completions", | |||
CompletionDetails = "completionEntryDetails", | |||
CompletionDetailsFull = "completionEntryDetailsFull", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be internal
Waiting for approval from @amcasey |
Please port to release-2.6 as well. |
* Add CompletionDetailsFull request * Update API baselines * Make internal
@@ -15,6 +15,8 @@ namespace ts.server.protocol { | |||
/* @internal */ | |||
CompletionsFull = "completions-full", | |||
CompletionDetails = "completionEntryDetails", | |||
/* @internal */ | |||
CompletionDetailsFull = "completionEntryDetailsFull", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the usual convention is -full
, rather than Full
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that is an oversight, we should fix it.
@mhegazy mentioned that this would be necessary for using the code actions from Visual Studio.