is it possible to extend an external class in Kotl...
# javascript
r
is it possible to extend an external class in KotlinJS? This is what I've tried so far:
Copy code
open external class Tensor {
...
}
fun Tensor.someInternalFunction() {
...
}
r
great thanks Robert!