Suppress dokka warnings for external classes exposing JS API to Kotlin

Usually MDN link in the class description is enough.
This commit is contained in:
Ilya Gorbunov
2018-04-20 05:31:34 +03:00
parent b93e385181
commit 481620ba32
5 changed files with 7 additions and 1 deletions
+2 -1
View File
@@ -3,7 +3,8 @@ package kotlin.js
/**
* Exposes the [console API](https://developer.mozilla.org/en/DOM/console) to Kotlin.
*/
external public interface Console {
@Suppress("NOT_DOCUMENTED")
public external interface Console {
public fun dir(o: Any): Unit
public fun error(vararg o: Any?): Unit
public fun info(vararg o: Any?): Unit