UNPKG
@actuatorjs/actuatorjs
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
Core interfaces and classes for actuatorjs ecosystem
@actuatorjs/actuatorjs
/
dist
/
esm
/
src
/
health
/
HealthIndicator.d.ts
6 lines
(5 loc)
•
156 B
TypeScript
View Raw
1
2
3
4
5
6
import
type
{
HealthResult
}
from
"./HealthResult"
;
export
interface
HealthIndicator
{
getName
:
() =>
string
;
check
:
() =>
Promise
<
HealthResult
>; }