| 4 | */ |
| 5 | |
| 6 | export interface FormattedValue { |
| 7 | value: string; // e.g. "1.5" |
| 8 | unit: string; // e.g. "MB" |
| 9 | formatted: string; // e.g. "1.5 MB" |
| 10 | } |
| 11 | |
| 12 | type UnitThreshold = { |
| 13 | threshold: number; |
nothing calls this directly
no outgoing calls
no test coverage detected