Updated on 2026-08-14
This commit is contained in:
parent
ac01e45371
commit
8db160652c
17 changed files with 421 additions and 1 deletions
|
|
@ -0,0 +1,20 @@
|
|||
package com.tangem.features.onboarding.v2.util
|
||||
|
||||
import com.tangem.core.decompose.factory.ComponentFactory
|
||||
import com.tangem.domain.models.wallet.UserWallet
|
||||
|
||||
interface ResetCardsComponent {
|
||||
|
||||
fun startResetCardsFlow(createdUserWallet: UserWallet.Cold)
|
||||
|
||||
data class Params(
|
||||
val callbacks: ModelCallbacks,
|
||||
)
|
||||
|
||||
interface ModelCallbacks {
|
||||
fun onCancel()
|
||||
fun onComplete()
|
||||
}
|
||||
|
||||
interface Factory : ComponentFactory<Params, ResetCardsComponent>
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue