blob: f54cae5f9c4c578caa3cc36827f8bdf802f63aa7 [file] [log] [blame]
// Signature format: 4.0
package androidx.compose.animation.tooling {
public final class ComposeAnimatedProperty {
ctor public ComposeAnimatedProperty(String label, Object value);
method public String component1();
method public Object component2();
method public androidx.compose.animation.tooling.ComposeAnimatedProperty copy(String label, Object value);
method public String getLabel();
method public Object getValue();
property public final String label;
property public final Object value;
}
public interface ComposeAnimation {
method public Object getAnimationObject();
method public default String? getLabel();
method public default java.util.Set<java.lang.Object> getStates();
method public androidx.compose.animation.tooling.ComposeAnimationType getType();
property public abstract Object animationObject;
property public default String? label;
property public default java.util.Set<java.lang.Object> states;
property public abstract androidx.compose.animation.tooling.ComposeAnimationType type;
}
public enum ComposeAnimationType {
enum_constant public static final androidx.compose.animation.tooling.ComposeAnimationType ANIMATED_VALUE;
enum_constant public static final androidx.compose.animation.tooling.ComposeAnimationType TRANSITION_ANIMATION;
}
}