mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
* add comments to everything potentially consumer facing * rework smtp --------- Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com>
10 lines
352 B
TypeScript
10 lines
352 B
TypeScript
import { T } from '../../../../base/lib'
|
|
|
|
/**
|
|
* The result of a single health check invocation.
|
|
*
|
|
* Contains a `result` field ("success", "failure", or "starting") and an optional `message`.
|
|
* This is the unnamed variant -- the health check name is added by the framework.
|
|
*/
|
|
export type HealthCheckResult = Omit<T.NamedHealthCheckResult, 'name'>
|