| 30 | } |
| 31 | |
| 32 | export interface FrameData { |
| 33 | screenMap: ScreenMapData; |
| 34 | strip_id?: number; |
| 35 | pixel_data?: Uint8Array; |
| 36 | // Make FrameData iterable for for-of loops |
| 37 | [Symbol.iterator](): Iterator<any>; |
| 38 | } |
| 39 | |
| 40 | export interface LayoutData { |
| 41 | screenMap: ScreenMapData; |
nothing calls this directly
no outgoing calls
no test coverage detected