(d: DialogState)
| 103 | } |
| 104 | |
| 105 | export function isModalDialog(d: DialogState): d is OpenModalDialog { |
| 106 | return d.open && "type" in d && !LAYOUT_MODE_TYPES.has(d.type); |
| 107 | } |
| 108 | |
| 109 | export const FPS = 60; |
| 110 |
no outgoing calls
no test coverage detected