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
When I try to compile TypeScript, neutralino.d.ts complains about the enum statements: Top-level declarations in .d.ts files must start with either a 'declare' or 'export' modifier.
This should be easy enough to fix; after going through and removing the "export" statements (c.f. #117), it should replace top-level enum with declare enum.
The text was updated successfully, but these errors were encountered:
When I try to compile TypeScript, neutralino.d.ts complains about the
enum
statements:Top-level declarations in .d.ts files must start with either a 'declare' or 'export' modifier.
This should be easy enough to fix; after going through and removing the "export" statements (c.f. #117), it should replace top-level
enum
withdeclare enum
.The text was updated successfully, but these errors were encountered: