sindrenm
04/25/2018, 12:35 PM/**
* Foo docs.
*
* @constructor Primary constructor docs. Can I somehow link to the secondary constructor?
*/
class Foo() {
/**
* Secondary constructor docs. Can I link to the primary constructor here?
*/
constructor(someValue: Any) : this()
}