Package-level declarations

Provides Wasm-platform interoperability support.

Provides Wasm-platform interoperability support.

Types

Link copied to clipboard
annotation class ExperimentalWasmInterop

Marks API related to interoperability with the Wasm platform as experimental.

Since Kotlin 2.2
annotation class ExperimentalWasmInterop

Marks API related to interoperability with the Wasm platform as experimental.

Since Kotlin 2.2
Link copied to clipboard
annotation class WasmExport(val name: String = "")

Exports a function with the given optional name. The declaration name will be used if the name argument is not provided.

Since Kotlin 1.8
annotation class WasmExport(val name: String = "")

Exports a function with the given optional name. The declaration name will be used if the name argument is not provided.

Since Kotlin 1.8
Link copied to clipboard
annotation class WasmImport(val module: String, val name: String = "")

Imports a function from the given module with the given optional name. The declaration name will be used if the name argument is not provided.

Since Kotlin 1.8
annotation class WasmImport(val module: String, val name: String = "")

Imports a function from the given module with the given optional name. The declaration name will be used if the name argument is not provided.

Since Kotlin 1.8