aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/DokkaBootstrap.kt
blob: d3d82e398ae7c729f628e92e8cfac4ecc2fab5a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package org.jetbrains.dokka

import java.util.function.BiConsumer

public interface DokkaBootstrap {
    @Throws(Throwable::class)
    public fun configure(serializedConfigurationJSON: String, logger: BiConsumer<String, String>)

    @Throws(Throwable::class)
    public fun generate()
}