Is it possible to overload `functionProperty`? If...
# javascript
s
Is it possible to overload
functionProperty
? If so how?
Copy code
external interface SomeInterface {
    var functionProperty: (param1: Type, param2: OtherType) -> ReturnValue
    var functionProperty: (param1: Type) -> ReturnValue
    var functionProperty: () -> ReturnValue
}
t
In
1.3.50
no
WA - declare only one method with required nullable
param2
To emulate one parameter call you can add extension
s
Gotcha, thanks