( level: 'info' | 'warning' | 'error' | 'success', message: string, )
| 48 | })); |
| 49 | |
| 50 | function statusFragment( |
| 51 | level: 'info' | 'warning' | 'error' | 'success', |
| 52 | message: string, |
| 53 | ): RuntimeStatusFragment { |
| 54 | return { kind: 'infrastructure', fragment: 'status', level, message }; |
| 55 | } |
| 56 | |
| 57 | function daemonResult(text: string, opts?: Partial<DaemonToolResult>): DaemonToolResult { |
| 58 | return { |
no outgoing calls
no test coverage detected