Updated on 2026-08-14
This commit is contained in:
parent
904d4bb006
commit
b352bb6235
39 changed files with 353 additions and 5 deletions
1
features/usedesk/api/.gitignore
vendored
Normal file
1
features/usedesk/api/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
17
features/usedesk/api/build.gradle.kts
Normal file
17
features/usedesk/api/build.gradle.kts
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
plugins {
|
||||
alias(deps.plugins.android.library)
|
||||
alias(deps.plugins.kotlin.android)
|
||||
id("configuration")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "com.tangem.feature.usedesk.api"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
/** Core */
|
||||
implementation(projects.core.decompose)
|
||||
implementation(projects.core.ui)
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
package com.tangem.feature.usedesk.api
|
||||
|
||||
import com.tangem.core.decompose.factory.ComponentFactory
|
||||
import com.tangem.core.ui.decompose.ComposableContentComponent
|
||||
|
||||
interface UsedeskComponent : ComposableContentComponent {
|
||||
|
||||
data class Params(
|
||||
val feedback: String? = null, // TODO [REDACTED_TASK_KEY]
|
||||
)
|
||||
|
||||
interface Factory : ComponentFactory<Params, UsedeskComponent>
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue