Updated on 2026-08-14

This commit is contained in:
Tangem 2025-10-24 12:33:42 +03:00
parent ac01e45371
commit 8db160652c
17 changed files with 421 additions and 1 deletions

View file

@ -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>
}