aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/Samples/SampleProcessingService.kt
blob: 7f46299f31550ce4d3655fbb358ac91a17b40c9f (plain)
1
2
3
4
5
6
7
8
package org.jetbrains.dokka.Samples

import org.jetbrains.dokka.ContentNode
import org.jetbrains.kotlin.descriptors.DeclarationDescriptor

interface SampleProcessingService {
    fun resolveSample(descriptor: DeclarationDescriptor, functionName: String?): ContentNode
}