xref: /aosp_15_r20/external/dokka/core/src/main/kotlin/Model/ElementSignatureProvider.kt (revision 1b2d298c530bf0473cc943e8414a5ff577a994bc)
1 package org.jetbrains.dokka
2 
3 import com.intellij.psi.PsiElement
4 import org.jetbrains.kotlin.descriptors.DeclarationDescriptor
5 
6 interface ElementSignatureProvider {
signaturenull7     fun signature(forDesc: DeclarationDescriptor): String
8     fun signature(forPsi: PsiElement): String
9 }