| 25 | } |
| 26 | |
| 27 | export interface Version { |
| 28 | major: number | string; |
| 29 | minor?: number | string; |
| 30 | patch?: number | string; |
| 31 | tag?: string; |
| 32 | build?: string; |
| 33 | date?: string; |
| 34 | } |
| 35 | |
| 36 | export interface OperatingSytem { |
| 37 | vendor: string; |
nothing calls this directly
no outgoing calls
no test coverage detected