(kind: Transformation["kind"])
| 1769 | } |
| 1770 | |
| 1771 | const formatTransformationKind = (kind: Transformation["kind"]): string => { |
| 1772 | switch (kind) { |
| 1773 | case "Encoded": |
| 1774 | return "Encoded side transformation failure" |
| 1775 | case "Transformation": |
| 1776 | return "Transformation process failure" |
| 1777 | case "Type": |
| 1778 | return "Type side transformation failure" |
| 1779 | } |
| 1780 | } |
| 1781 | |
| 1782 | const formatRefinementKind = (kind: Refinement["kind"]): string => { |
| 1783 | switch (kind) { |
no outgoing calls
no test coverage detected
searching dependent graphs…