SpotiFlyer/common/data-models/src/iosMain/kotlin/com.shabinder.common.models/IOSPlatformActions.kt
2021-05-18 20:02:33 +05:30

10 lines
245 B
Kotlin

package com.shabinder.common.models
import kotlin.native.concurrent.AtomicReference
actual interface PlatformActions
actual val StubPlatformActions = object : PlatformActions {}
actual typealias NativeAtomicReference<T> = AtomicReference<T>