(path: Path.Path)
| 424 | path.join(homedir(), ".config", "systemd", "user"); |
| 425 | |
| 426 | const systemdUnitPath = (path: Path.Path): string => |
| 427 | path.join(systemdUnitDir(path), `${SERVICE_LABEL}.service`); |
| 428 | |
| 429 | export interface SystemdUnitOptions { |
| 430 | readonly execStart: ReadonlyArray<string>; |
no test coverage detected