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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user