Hello. Is there any way to share constants between kotlin and typescript? For example: object ApiConstants { const val SOME_VAL_1 = 1234 const val SOME_VAL_2 = "hello world" } Expected TS output: let ApiConstants = { SOME_VAL_1: 1234, SOME_VAL_2: "hello world" }