definitions/ts/app.d.ts includes this for class DsApp:
/** Auto-Launch Project when shared data received */
SetSharedApp(name: "AppName"): void;
That defines the value of name as a constant "AppName".
I believe that should be type string, with the value being the name of the current app.
It might help if the value defaults to app.GetAppName() in case the app name changes.
I don't know if this is an app issue or an issue with the definition in VSCode.
I don't know if this definition came from DS or if it's unique to the extension code.
I don't know what the intent is for the value.
The information here will determined if a change is required for app.d.ts and/or elsewhere.
definitions/ts/app.d.ts includes this for class DsApp:
That defines the value of name as a constant "AppName".
I believe that should be type
string, with the value being the name of the current app.It might help if the value defaults to app.GetAppName() in case the app name changes.
I don't know if this is an app issue or an issue with the definition in VSCode.
I don't know if this definition came from DS or if it's unique to the extension code.
I don't know what the intent is for the value.
The information here will determined if a change is required for app.d.ts and/or elsewhere.