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..
Copy code
external class Keypair(keys: dynamic) {
//omitted for brevity
}
and the class I am trying to get it to find with the
external
modifier
Copy code
export class Keypair {
constructor(keys) {
//omitted
}
//omitted
}
s
Svyatoslav Kuzmich [JB]
11/25/2019, 12:51 PM
Looks like your TS class is inside a module. Do you have a