mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
* wip * initialize callbacks * wip * smtp * list_service_interfaces * wip * wip * fix domains * fix hostname handling in NetService * misc fixes * getInstalledPackages * misc fixes * publish v6 lib * refactor service effects * fix import * fix container runtime * fix tests * apply suggestions from review
13 lines
426 B
TypeScript
13 lines
426 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { HealthCheckId } from "./HealthCheckId"
|
|
import type { PackageId } from "./PackageId"
|
|
|
|
export type DependencyRequirement =
|
|
| {
|
|
kind: "running"
|
|
id: PackageId
|
|
healthChecks: Array<HealthCheckId>
|
|
versionRange: string
|
|
}
|
|
| { kind: "exists"; id: PackageId; versionRange: string }
|