blob: b43c35a67a6569559b5851bf20833da1b8116788 [file] [log] [blame]
package com.airbnb.lottie;
/**
* Receive a result with either the value or exception for a {@link LottieTask}
*/
public interface LottieListener<T> {
void onResult(T result);
}