-
Notifications
You must be signed in to change notification settings - Fork 5
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
Visual Studio Code autocomplete does not have the automatic methods #5
Comments
Not sure if this is related: #6 (two blank lines in the JSDoc, thus the types.d.ts file) |
After reading the VS Code docs, I believe the typings file should be called |
JIRA issue created: https://jira.corp.adobe.com/browse/ACNA-796 |
Ok so did some research on this, vscode intellisense picks up the
the same applies to other repos where we use a will raise a PR |
Expected Behaviour
Autocomplete is available for all methods, including the auto generated ones.
Actual Behaviour
Autocomplete is not available for all methods, e.g.
listComputedAttributes
is missing for example.Steps to Reproduce
init
to get the SDK objectlistComputedAttributes
.Investigation
Visual Studio Code is not using the
types.d.ts
file for autocomplete, it is using the methods it introspects from the exported module. Find out how Visual Studio Code derives its autocomplete data from, so we can fix it in the library.The text was updated successfully, but these errors were encountered: