1// Signature format: 4.0
2package androidx.compose.animation.graphics {
3
4  @SuppressCompatibility @kotlin.RequiresOptIn(message="This is an experimental animation graphics API.") @kotlin.annotation.Retention(kotlin.annotation.AnnotationRetention.BINARY) @kotlin.annotation.Target(allowedTargets={kotlin.annotation.AnnotationTarget.CLASS, kotlin.annotation.AnnotationTarget.FUNCTION, kotlin.annotation.AnnotationTarget.PROPERTY}) public @interface ExperimentalAnimationGraphicsApi {
5  }
6
7}
8
9package androidx.compose.animation.graphics.res {
10
11  public final class AnimatedVectorPainterResources_androidKt {
12    method @androidx.compose.runtime.Composable public static androidx.compose.ui.graphics.painter.Painter rememberAnimatedVectorPainter(androidx.compose.animation.graphics.vector.AnimatedImageVector animatedImageVector, boolean atEnd);
13  }
14
15  public final class AnimatedVectorResources_androidKt {
16    method @androidx.compose.runtime.Composable public static androidx.compose.animation.graphics.vector.AnimatedImageVector animatedVectorResource(androidx.compose.animation.graphics.vector.AnimatedImageVector.Companion, @DrawableRes int id);
17  }
18
19}
20
21package androidx.compose.animation.graphics.vector {
22
23  @androidx.compose.runtime.Immutable public final class AnimatedImageVector {
24    method public androidx.compose.ui.graphics.vector.ImageVector getImageVector();
25    method public int getTotalDuration();
26    property public androidx.compose.ui.graphics.vector.ImageVector imageVector;
27    property public int totalDuration;
28    field public static final androidx.compose.animation.graphics.vector.AnimatedImageVector.Companion Companion;
29  }
30
31  public static final class AnimatedImageVector.Companion {
32  }
33
34}
35
36