blob: 8c2ccc79dca083e4c1afea62460b1f3e17f3b377 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* 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.base.renderers.html.SearchRecord
public data class AddToSearch(
val moduleName: String,
val elements: List<SearchRecord>
): Command
|