Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit d6ccfca

Browse files
Update global.d.ts
1 parent 27e1a31 commit d6ccfca

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

tgui/global.d.ts

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,38 @@ type ByondType = {
4949
*/
5050
BLINK: number | null;
5151

52+
/**
53+
* True if browser is IE8 or lower.
54+
*/
55+
IS_LTE_IE8: boolean;
56+
57+
/**
58+
* True if browser is IE9 or lower.
59+
*/
60+
IS_LTE_IE9: boolean;
61+
62+
/**
63+
* True if browser is IE10 or lower.
64+
*/
65+
IS_LTE_IE10: boolean;
66+
67+
/**
68+
* True if browser is IE11 or lower.
69+
*/
70+
IS_LTE_IE11: boolean;
71+
72+
/**
73+
* If `true`, unhandled errors and common mistakes result in a blue screen
74+
* of death, which stops this window from handling incoming messages and
75+
* closes the active instance of tgui datum if there was one.
76+
*
77+
* It can be defined in window.initialize() in DM, or changed in runtime
78+
* here via this property to `true` or `false`.
79+
*
80+
* It is recommended that you keep this ON to detect hard to find bugs.
81+
*/
82+
strictMode: boolean;
83+
5284
/**
5385
* Makes a BYOND call.
5486
*

0 commit comments

Comments
 (0)