(source: string)
| 13 | } from "./staticWorkflowMetadata"; |
| 14 | |
| 15 | export function parseWorkflowDescription(source: string): string | null { |
| 16 | try { |
| 17 | return parseWorkflowMetadataDescription(parseStaticWorkflowMetadataLiteral(source)); |
| 18 | } catch { |
| 19 | return null; |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | export function parseWorkflowName(source: string): string | null { |
| 24 | try { |
no test coverage detected