Skip to content

Commit 42a05ff

Browse files
Added type from Untity boolean like
1 parent 28fe2f3 commit 42a05ff

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* Unity Boolean Like Type Declaration. This type declaration is used to
3+
* represent the boolean values `true` and `false` in the Unity Module.
4+
*/
5+
declare type UnityBooleanLike =
6+
/**
7+
* Represents the boolean value `false`.
8+
*/
9+
| 0
10+
/**
11+
* Represents the boolean value `true`.
12+
*/
13+
| 1;

0 commit comments

Comments
 (0)