kasper.kondzielski
07/23/2018, 9:12 PMmain.bundle.js:1 Uncaught (in promise) ReferenceError: JSONFormatter is not defined
at P (main.bundle.js:1)
at b (main.bundle.js:1)
Roman Artemev [JB]
07/24/2018, 11:16 AMkasper.kondzielski
07/24/2018, 1:02 PMkasper.kondzielski
07/24/2018, 7:30 PMkasper.kondzielski
07/24/2018, 7:33 PM.d.ts
file from class to interfase, and regenerated the bidinganton.bannykh
08/01/2018, 12:52 PMexternal
declarations are marked with @JsNonModule
annotations. That makes the compiler think that those classes could be referenced as is. What you probably want instead is `@JsModule`: https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.js/-js-module/index.html . This annotation lets you tell the compiler, which NPM package contains the declaration. As a result the compiler generates appropriate require
calls and imports those classes.kasper.kondzielski
08/08/2018, 7:06 AM