// 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 get() = get(named("sampleInfo")) /** * @return Definition by key "sampleInfo" */ public val Koin.sampleInfo: Test 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>): KoinDefinition> = 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>): KoinDefinition> = factory(named("sampleInfo"), definition = definition)