blob: 1f6f86eec1738a00e7b7e42b11b272fcfc9d6825 [file] [log] [blame]
package com.airbnb.lottie.samples
import android.support.v4.util.Pair
internal interface ILottieApplication {
fun startRecordingDroppedFrames()
/**
* Returns the number of frames dropped since starting
*/
fun stopRecordingDroppedFrames(): Pair<Int, Long>
}