Read d ts schema #3844
Unanswered
loremipsumowski
asked this question in
Q&A
Replies: 1 comment
-
I don't know what description you want to add more, but you can write markdown. declare class MyClass {
/**
* I can write markdown
* # header
* * item1
* * item2
* |col|col|
* |---|---|
* |d1 | d2|
*/
property: number;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there any way to read schema of d.ts file with Monaco by custom purposes? I would like to create custom completion items provider that is based on d.ts schema, but I would like to extend that items by adding detailed descriptions from external source.
Is that possible to modify suggestions made by Monaco, or simply read model of custom class added as external lib?
For example I have code:
now, after ctrl+space I see there is
property
of number type, and any description, but I would like to add more description there myself, could I do it any way? Or could I extract list of properties and methods of class as JSON to use it myself?Beta Was this translation helpful? Give feedback.
All reactions