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
since from the definition we don't know if the class is exported or available on the global scope, it would make sense to pass a flag: export = global | module to specify the export strategy.
The text was updated successfully, but these errors were encountered:
input:
https://github.com/Microsoft/vscode/blob/e74a6601c3714f98fc63102e8304b00c983b6167/src/vs/vscode.d.ts#L243-L267
output:
This is wrong for the vscode project since they use modules to export their code. This is how you would do it with the common js syntax:
expected:
since from the definition we don't know if the class is exported or available on the global scope, it would make sense to pass a flag:
export = global | module
to specify the export strategy.The text was updated successfully, but these errors were encountered: