(path: Path.Path)
| 417 | path.join(homedir(), ".config", "systemd", "user"); |
| 418 | |
| 419 | const systemdUnitPath = (path: Path.Path): string => |
| 420 | path.join(systemdUnitDir(path), `${SERVICE_LABEL}.service`); |
| 421 | |
| 422 | export interface SystemdUnitOptions { |
| 423 | readonly execStart: ReadonlyArray<string>; |
no test coverage detected