blob: b2e883f05c747c865122cf3552c418b66c62a19d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package org.jetbrains.dokka.base.templating
import org.jetbrains.dokka.model.properties.ExtraProperty
import org.jetbrains.dokka.pages.ContentNode
data class InsertTemplateExtra(val command: Command) : ExtraProperty<ContentNode> {
companion object : ExtraProperty.Key<ContentNode, InsertTemplateExtra>
override val key: ExtraProperty.Key<ContentNode, *>
get() = Companion
}
|