You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if that would be a complicated feature to add (I'll be glad to help but I know nothing about Extension's programming).
My idea would be to add Variables name as a comment name in TypeScript (so it can be viewed with Intellisense), and it could be toggled from extension's preference.
Simple Example :
Indicator.cs
public class Indicator
{
[JsonProperty("n")]
public string Name { get; set; }
}
Indicator.ts
export interface Indicator {
/** Name */
n: string;
}
The text was updated successfully, but these errors were encountered:
I don't know if that would be a complicated feature to add (I'll be glad to help but I know nothing about Extension's programming).
My idea would be to add Variables name as a comment name in TypeScript (so it can be viewed with Intellisense), and it could be toggled from extension's preference.
Simple Example :
Indicator.cs
Indicator.ts
The text was updated successfully, but these errors were encountered: