Shan
11/24/2019, 11:09 PMexternal
class with a constructor? Getting a not defined
error when trying to run tests. Though I'm unsure if this is because of how I defined the constructor, or because of something else related to the class..
external class Keypair(keys: dynamic) {
//omitted for brevity
}
and the class I am trying to get it to find with the external
modifier
export class Keypair {
constructor(keys) {
//omitted
}
//omitted
}
Svyatoslav Kuzmich [JB]
11/25/2019, 12:51 PM@file:JsModule
annotation?turansky
11/25/2019, 11:44 PM