blob: e9c7342e629db7edf23cbf380b5668df7710fd51 (
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.transformers.documentables
@Deprecated(
message = "Declaration was moved to dokka-core",
replaceWith = ReplaceWith("org.jetbrains.dokka.transformers.documentation.ClashingDriIdentifier"),
level = DeprecationLevel.WARNING // TODO change to error after Kotlin 1.9.20
)
public typealias ClashingDriIdentifier = org.jetbrains.dokka.transformers.documentation.ClashingDriIdentifier
|