allow variable provider to specify the interfaces satisfied by a variable (#208101)

This commit is contained in:
Aaron Munger
2024-03-19 09:04:08 -07:00
committed by GitHub
parent 811ce8a51f
commit a8c5e10926
5 changed files with 8 additions and 1 deletions

View File

@@ -45,6 +45,9 @@ declare module 'vscode' {
/** The type of the variable's value */
type?: string;
/** The interfaces or contracts that the type satisfies */
interfaces?: string[];
/** The language of the variable's value */
language?: string;
}