We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cfe842 commit facec05Copy full SHA for facec05
module/source/types/unity-banner-type.d.ts
@@ -2,6 +2,16 @@
2
* Banners can be used to display non-critical warnings and error messages from
3
* the Unity Instance.
4
*/
5
-type UnityBannerType = "error" | "warning";
+type UnityBannerType =
6
+ /**
7
+ * Represents an error banner type. This banner type is used to display
8
+ * critical errors from the Unity Instance.
9
+ */
10
+ | "error"
11
12
+ * Represents a warning banner type. This banner type is used to display
13
+ * non-critical warnings from the Unity Instance.
14
15
+ | "warning";
16
17
export type { UnityBannerType };
0 commit comments