NativeScript / nativescript-marketplace-demo

NativeScript kitchen sink demo. All of NativeScript’s functionality in one app.
http://www.nativescript.org
Apache License 2.0
325 stars 97 forks source link

chore: remove unneeded d.ts (were there for tsx) #327

Closed vakrilov closed 4 years ago

vakrilov commented 4 years ago

The types in core.d.ts were needed because of .tsx. We don't need them anymore.

Another fix would have beed to replace the tns-core-modules with @nativescrit/core in the declaration file: from: declare module "tns-core-modules/ui/core/view" { ... } to: declare module "@nativescript/core/s/ui/core/view" { ... }

However core.d.ts is no longer needed, so better remove it completely.