• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 }