* Creates a new window.
| 273 | * Creates a new window. |
| 274 | */ |
| 275 | interface $WindowConstructor { |
| 276 | new(options?: OSGUIWindowOptions): OSGUI$Window; |
| 277 | (options?: OSGUIWindowOptions): OSGUI$Window; |
| 278 | |
| 279 | DEBUG_FOCUS?: boolean; |
| 280 | OVERRIDE_TRANSITION_DURATION?: number; |
| 281 | Z_INDEX: number; |
| 282 | } |
| 283 | |
| 284 | /** |
| 285 | * Creates a new form window. |
nothing calls this directly
no outgoing calls
no test coverage detected