include variable type information (#202896)

include type information
This commit is contained in:
Aaron Munger
2024-01-19 13:55:04 -08:00
committed by GitHub
parent 4c316c04ca
commit 5b18cd75cb
6 changed files with 16 additions and 9 deletions

View File

@@ -38,6 +38,9 @@ declare module 'vscode' {
An empty string can be used if no value should be shown in the UI.
*/
value: string;
/** The type of the variable's value */
type?: string;
}
}