| 9 | } |
| 10 | |
| 11 | interface DockerComposeFile { |
| 12 | version?: string; |
| 13 | services?: Record<string, unknown>; |
| 14 | [key: string]: unknown; |
| 15 | } |
| 16 | |
| 17 | function compareVersionParts(a: string[], b: string[]): number { |
| 18 | const len = Math.max(a.length, b.length); |
nothing calls this directly
no outgoing calls
no test coverage detected