mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-16 13:23:49 +00:00
39 lines
1.3 KiB
Kotlin
39 lines
1.3 KiB
Kotlin
// THIS CODE HAVE BEEN GENERATED AUTOMATICALLY
|
|
// TO REGENERATE IT JUST DELETE FILE
|
|
// ORIGINAL FILE: Test.kt
|
|
package dev.inmo.micro_utils.koin.generator.test
|
|
|
|
import kotlin.Boolean
|
|
import kotlin.String
|
|
import org.koin.core.Koin
|
|
import org.koin.core.definition.Definition
|
|
import org.koin.core.definition.KoinDefinition
|
|
import org.koin.core.module.Module
|
|
import org.koin.core.qualifier.named
|
|
import org.koin.core.scope.Scope
|
|
|
|
/**
|
|
* @return Definition by key "sampleInfo"
|
|
*/
|
|
public val Scope.sampleInfo: Test<String>
|
|
get() = get(named("sampleInfo"))
|
|
|
|
/**
|
|
* @return Definition by key "sampleInfo"
|
|
*/
|
|
public val Koin.sampleInfo: Test<String>
|
|
get() = get(named("sampleInfo"))
|
|
|
|
/**
|
|
* Will register [definition] with [org.koin.core.module.Module.single] and key "sampleInfo"
|
|
*/
|
|
public fun Module.sampleInfoSingle(createdAtStart: Boolean = false,
|
|
definition: Definition<Test<String>>): KoinDefinition<Test<String>> =
|
|
single(named("sampleInfo"), createdAtStart = createdAtStart, definition = definition)
|
|
|
|
/**
|
|
* Will register [definition] with [org.koin.core.module.Module.factory] and key "sampleInfo"
|
|
*/
|
|
public fun Module.sampleInfoFactory(definition: Definition<Test<String>>):
|
|
KoinDefinition<Test<String>> = factory(named("sampleInfo"), definition = definition)
|