discord-jadx/app/src/main/java/kotlin/reflect/KMutableProperty0.java

14 lines
354 B
Java

package kotlin.reflect;
import kotlin.Unit;
import kotlin.jvm.functions.Function1;
/* compiled from: KProperty.kt */
public interface KMutableProperty0<V> extends KProperty0<V>, KProperty {
/* compiled from: KProperty.kt */
public interface Setter<V> extends KMutableProperty$Setter<V>, Function1<V, Unit> {
}
Setter<V> getSetter();
}