001package react4j; 002 003import javax.annotation.Nonnull; 004import jsinterop.annotations.JsPackage; 005import jsinterop.annotations.JsType; 006 007@JsType( isNative = true, namespace = JsPackage.GLOBAL, name = "Object" ) 008public class ReactErrorInfo 009{ 010 @SuppressWarnings( { "NotNullFieldNotInitialized", "unused" } ) 011 @Nonnull 012 public String componentStack; 013}