com.lemonappdev.konsist.api.declaration.KoExternalDeclaration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of konsist Show documentation
Show all versions of konsist Show documentation
A Kotlin architecture test library. Define and guard code base consistency using Kotlin.
package com.lemonappdev.konsist.api.declaration
import com.lemonappdev.konsist.api.declaration.type.KoBaseTypeDeclaration
import com.lemonappdev.konsist.api.provider.KoChildProvider
/**
* Represents a Kotlin external declaration - declaration which is not defined in the project (e.g. defined
* in the library). it may be a class, interface or object.
*/
interface KoExternalDeclaration :
KoParentDeclaration,
KoChildProvider,
KoBaseTypeDeclaration
© 2015 - 2025 Weber Informatics LLC | Privacy Policy