diff options
Diffstat (limited to 'plugins/base/src/main/kotlin/templating/InsertTemplateExtra.kt')
-rw-r--r-- | plugins/base/src/main/kotlin/templating/InsertTemplateExtra.kt | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/plugins/base/src/main/kotlin/templating/InsertTemplateExtra.kt b/plugins/base/src/main/kotlin/templating/InsertTemplateExtra.kt deleted file mode 100644 index b4316e0f..00000000 --- a/plugins/base/src/main/kotlin/templating/InsertTemplateExtra.kt +++ /dev/null @@ -1,16 +0,0 @@ -/* - * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. - */ - -package org.jetbrains.dokka.base.templating - -import org.jetbrains.dokka.model.properties.ExtraProperty -import org.jetbrains.dokka.pages.ContentNode - -public data class InsertTemplateExtra(val command: Command) : ExtraProperty<ContentNode> { - - public companion object : ExtraProperty.Key<ContentNode, InsertTemplateExtra> - - override val key: ExtraProperty.Key<ContentNode, *> - get() = Companion -} |