(version: string)
| 20 | } |
| 21 | |
| 22 | export function createDesktopRuntimeIdentity(version: string): RuntimeIdentity { |
| 23 | return { version, kind: 'desktop' } |
| 24 | } |
| 25 | |
| 26 | export function assertDesktopDataDirCompatible(pathProvider: PathProvider, version: string): RuntimeIdentity { |
| 27 | const runtime = createDesktopRuntimeIdentity(version) |
no outgoing calls
no test coverage detected