blob: 71fc3417e5810615c072a41aae10201787afe043 [file] [log] [blame]
package com.airbnb.lottie;
import android.support.annotation.Nullable;
/**
* @see LottieCompositionFactory
* @see LottieResult
*/
@Deprecated
public interface OnCompositionLoadedListener {
/**
* Composition will be null if there was an error loading it. Check logcat for more details.
*/
void onCompositionLoaded(@Nullable LottieComposition composition);
}