Is it possible to add a comment to the Typescript ...
# javascript
q
Is it possible to add a comment to the Typescript definitions generated from Kotlin code? What I would like is to end up with something like:
Copy code
interface MyInterface {
  /**
  * This is my property
  */
  property: string
}
e
This isn't possible now, might come later on AFAIU
q
Thanks @Edoardo Luppi