Open DMCApps opened 4 years ago
QuickInfo (hover) response:
[Trace - 19:05:07.91] <semantic> Response received: quickinfo (141). Request took 3 ms. Success: true
Result: {
"kind": "const",
"kindModifiers": "export",
"start": {
"line": 13,
"offset": 14
},
"end": {
"line": 13,
"offset": 24
},
"displayString": "const showDialog: (payload: {\n title: string;\n content: string;\n acceptText?: string;\n onAcceptClick?: Function;\n cancelText?: string;\n onCancelClick?: Function;\n}) => {\n type: any;\n payload: {\n title: string;\n ... 4 more ...;\n onCancelClick?: Function;\n };\n}",
"documentation": "Shows a dialog to the user with the given title, content, and performs the onAcceptClick\non the accept button press",
"tags": [
{
"name": "param",
"text": "payload - The dialog information to show the user"
}
]
}
I believe the request here is to include the additional param
tags in the tags
part of the quickinfo
response
@mjbvz There are 2 requests (The second one is just half mention in the last line cuz I wasn't sure if I should have made a separate ticket for it)
param.*
values in the quick info.Is this still an issue ?
@thomas-ef This suggestion hasn't been implemented yet.
Method Definition
The quick info
TS Template added by @mjbvz
TypeScript Version: 3.8.0-beta
Search Terms
Steps to Reproduce:
All the parameters show for the method signatures but none of the inner parameter descriptions show. e.g. payload.cancelText does not show the text "Text shown on the cancel button" in the hover event dialog.
Note as well. Following the sytax defined here the default values do not show anywhere within the pop up. (I can make a separate issue if needed)