| 160 | } |
| 161 | |
| 162 | interface StreamPreset { |
| 163 | id: string; |
| 164 | label: string; |
| 165 | chunkSize: number; |
| 166 | intervalMs: number; |
| 167 | jitterMs: number; |
| 168 | } |
| 169 | |
| 170 | const STREAM_PRESETS: StreamPreset[] = [ |
| 171 | { id: "char", label: "Char", chunkSize: 1, intervalMs: 35, jitterMs: 8 }, |
nothing calls this directly
no outgoing calls
no test coverage detected