UNPKG

react-unity-webgl

Version:

React Unity WebGL provides a modern solution for embedding Unity WebGL builds in your React Application while providing advanced APIs for two way communication and interaction between Unity and React.

17 lines 492 B
/** * Banners can be used to display non-critical warnings and error messages from * the Unity Instance. */ type UnityBannerType = /** * Represents an error banner type. This banner type is used to display * critical errors from the Unity Instance. */ "error" /** * Represents a warning banner type. This banner type is used to display * non-critical warnings from the Unity Instance. */ | "warning"; export type { UnityBannerType }; //# sourceMappingURL=unity-banner-type.d.ts.map