react4j.internal.OnComponentWillUnmount Maven / Gradle / Ivy
The newest version!
package react4j.internal;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsType;
/**
* Native support infrastructure for componentWillUnmount react lifecycle.
*/
@JsType( isNative = true, namespace = JsPackage.GLOBAL, name = "?" )
public interface OnComponentWillUnmount
{
void componentWillUnmount();
}