One possible way to do it is this: ``` external c...
# javascript
f
One possible way to do it is this:
Copy code
external class Foo {
  // instance members
}

JsName("Foo")
external object FooConstructor {
  // static members
}
s
Thanks