All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.web.url.URL.kt Maven / Gradle / Ivy

package web.url

import web.buffer.Blob

external class URL : org.w3c.dom.url.URL {
    constructor(
        url: String,
        base: String = definedExternally,
    )

    constructor(
        url: URL,
        base: URL = definedExternally,
    )

    companion object {
        fun createObjectURL(obj: Blob): String
        fun revokeObjectURL(url: String)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy