| 1 | import type { BotContext } from '../types.js'; |
| 2 | |
| 3 | interface UnitDef { |
| 4 | factor: number; // multiply to get base unit |
| 5 | offset?: number; // for temperature |
| 6 | base: string; |
| 7 | name: string; |
| 8 | } |
| 9 | |
| 10 | type UnitMap = Record<string, UnitDef>; |
| 11 |
nothing calls this directly
no outgoing calls
no test coverage detected