org.jetbrains.kotlinx.jupyter.dependencies.ScriptDependencyAnnotationHandler.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-jupyter-kernel Show documentation
Show all versions of kotlin-jupyter-kernel Show documentation
Kotlin Jupyter kernel published as artifact
package org.jetbrains.kotlinx.jupyter.dependencies
import kotlin.script.experimental.api.ResultWithDiagnostics
import kotlin.script.experimental.api.ScriptCompilationConfiguration
interface ScriptDependencyAnnotationHandler {
fun configure(
configuration: ScriptCompilationConfiguration,
annotations: List,
): ResultWithDiagnostics
}