(idLabels: Record<string, string> | undefined, value: T)
| 34 | } |
| 35 | |
| 36 | export function beforeContainerSubstitute<T extends object>(idLabels: Record<string, string> | undefined, value: T): T { |
| 37 | let devcontainerId: string | undefined; |
| 38 | return substitute0(replaceDevContainerId.bind(undefined, () => devcontainerId || (idLabels && (devcontainerId = devcontainerIdForLabels(idLabels)))), value); |
| 39 | } |
| 40 | |
| 41 | export function containerSubstitute<T extends object>(platform: NodeJS.Platform, configFile: URI | undefined, containerEnv: NodeJS.ProcessEnv, value: T): T { |
| 42 | const isWindows = platform === 'win32'; |
no test coverage detected