| 4 | // we have 3 different types of IQ clients, API, Blob, and Local. They all use this interface |
| 5 | |
| 6 | export interface IQDataClient { |
| 7 | getIQDataBlocks( |
| 8 | meta: SigMFMetadata, |
| 9 | indexes: number[], |
| 10 | blockSize: number, |
| 11 | signal: AbortSignal |
| 12 | ): Promise<IQDataSlice[]>; |
| 13 | |
| 14 | getMinimapIQ(meta: SigMFMetadata, signal: AbortSignal): Promise<Float32Array[]>; |
| 15 | } |
no outgoing calls
no test coverage detected