| 1 | import { JSONValueType } from "@jsonhero/json-infer-types"; |
| 2 | |
| 3 | export interface HierarchicalTypes { |
| 4 | types: string[]; |
| 5 | } |
| 6 | |
| 7 | export function concatenated(types: HierarchicalTypes): string { |
| 8 | return types.types.join("/"); |
nothing calls this directly
no outgoing calls
no test coverage detected