diff options
Diffstat (limited to 'core/src/main/kotlin/DokkaBootstrap.kt')
-rw-r--r-- | core/src/main/kotlin/DokkaBootstrap.kt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/src/main/kotlin/DokkaBootstrap.kt b/core/src/main/kotlin/DokkaBootstrap.kt new file mode 100644 index 00000000..b78eb9c6 --- /dev/null +++ b/core/src/main/kotlin/DokkaBootstrap.kt @@ -0,0 +1,10 @@ +package org.jetbrains.dokka + +import java.util.function.BiConsumer + +interface DokkaBootstrap { + + fun configure(logger: BiConsumer<String, String>, serializedConfigurationJSON: String) + + fun generate() +}
\ No newline at end of file |