iosMain.com.slack.circuit.retained.RetainedValueProvider.ios.kt Maven / Gradle / Ivy
// Copyright (C) 2023 Slack Technologies, LLC
// SPDX-License-Identifier: Apache-2.0
package com.slack.circuit.retained
/**
* Provides a retained value to a [RetainedStateRegistry].
*
* Only defined as a top-level interface to allow non-JS targets to extend `() -> Any?`.
*/
public actual fun interface RetainedValueProvider : () -> Any? {
public actual override fun invoke(): Any?
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy