SpotiFlyer/common/data-models/src/iosMain/kotlin/com.shabinder.common.models/IOSPlatformActions.kt

10 lines
245 B
Kotlin
Raw Normal View History

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