(options?: {
deep?: boolean
})
| 72 | } |
| 73 | |
| 74 | export async function autonomyStatusHandler(options?: { |
| 75 | deep?: boolean |
| 76 | }): Promise<void> { |
| 77 | process.stdout.write(`${await getAutonomyStatusText(options)}\n`) |
| 78 | } |
| 79 | |
| 80 | export async function getAutonomyRunsText( |
| 81 | limit?: string | number, |
no test coverage detected