spierce7
06/05/2020, 3:25 AMspierce7
06/05/2020, 3:25 AMdeclare namespace lib_communities_shared {
type Nullable<T> = T | null | undefined
namespace com.rallyhealth.feature.community {
class DataClassTest {
constructor(a: string, b: Nullable<number>)
static DataClassTest_init_$Create$(a: string, b: Nullable<number>, $mask0: number, $marker: Nullable<any /*Class kotlin.js.DefaultConstructorMarker with kind: OBJECT*/>): com.rallyhealth.feature.community.DataClassTest
readonly a: string;
readonly b: Nullable<number>;
component1(): string
component2(): Nullable<number>
copy(a: string, b: Nullable<number>): com.rallyhealth.feature.community.DataClassTest
toString(): string
hashCode(): number
equals(other: Nullable<any>): boolean
}
function copy(_this_: com.rallyhealth.feature.community.DataClassTest, obj: com.rallyhealth.feature.community.DataClassTestCopy): com.rallyhealth.feature.community.DataClassTest
}
}
Svyatoslav Kuzmich [JB]
06/05/2020, 7:11 AM