blob: 544aee783fc47c3f4881718ba7c1e81b1bd5b0b3 [file] [log] [blame]
package com.airbnb.lottie.compose
sealed class LottieAnimationResult {
abstract val lastFrameTime: Long?
class Cancelled(override val lastFrameTime: Long?) : LottieAnimationResult()
class Finished(override val lastFrameTime: Long) : LottieAnimationResult()
}