(
limit?: string | number,
options?: { rootDir?: string },
)
| 94 | } |
| 95 | |
| 96 | export async function getAutonomyFlowsText( |
| 97 | limit?: string | number, |
| 98 | options?: { rootDir?: string }, |
| 99 | ): Promise<string> { |
| 100 | return formatAutonomyFlowsList( |
| 101 | await listAutonomyFlows(options?.rootDir), |
| 102 | parseAutonomyLimit(limit), |
| 103 | ) |
| 104 | } |
| 105 | |
| 106 | export async function autonomyFlowsHandler( |
| 107 | limit?: string | number, |
no test coverage detected