001package react4j.internal;
002
003import jsinterop.annotations.JsPackage;
004import jsinterop.annotations.JsType;
005
006/**
007 * Native support infrastructure for componentWillUnmount react lifecycle.
008 */
009@JsType( isNative = true, namespace = JsPackage.GLOBAL, name = "?" )
010public interface OnComponentWillUnmount
011{
012  void componentWillUnmount();
013}