| 7 | import { renderEmptyStateHtml, renderSharedCardHtml } from './card-render'; |
| 8 | |
| 9 | export interface RenderableWorkflow { |
| 10 | title: string; |
| 11 | description?: string; |
| 12 | path: string; |
| 13 | triggers: string[]; |
| 14 | lastUpdated?: string | null; |
| 15 | } |
| 16 | |
| 17 | export type WorkflowSortOption = 'title' | 'lastUpdated'; |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected