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

jsMain.js.core.PropertyDescriptor.kt Maven / Gradle / Ivy

package js.core

external interface PropertyDescriptor {
    var configurable: Boolean
    var enumerable: Boolean
    var value: T
    var writable: Boolean
    var get: () -> T
    var set: (v: T) -> Unit
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy