| 6 | } |
| 7 | |
| 8 | interface WindowBoundsDisplay { |
| 9 | workArea: Rectangle |
| 10 | } |
| 11 | |
| 12 | function isRecord(value: unknown): value is Record<string, unknown> { |
| 13 | return typeof value === 'object' && value !== null |
nothing calls this directly
no outgoing calls
no test coverage detected