| 3 | */ |
| 4 | |
| 5 | export interface Logger { |
| 6 | info(category: string, message: string, ...args: unknown[]): void |
| 7 | warn(category: string, message: string, ...args: unknown[]): void |
| 8 | error(category: string, message: string, ...args: unknown[]): void |
| 9 | } |
| 10 | |
| 11 | export interface MigrationContext { |
| 12 | /** ~/.chatlab */ |
no outgoing calls
no test coverage detected