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