aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/main/kotlin/renderers/OutputWriter.kt
blob: a6fda51a068d9fd0dcaf271fcb5ad00da19078f9 (plain)
1
2
3
4
5
6
7
package org.jetbrains.dokka.base.renderers

interface OutputWriter {

    fun write(path: String, text: String, ext: String)
    fun writeResources(pathFrom: String, pathTo: String)
}