Integrate with Uptime Kuma Socket.io API

This commit is contained in:
Neshura 2024-01-03 20:39:53 +01:00
parent 4523de1217
commit 3c1938af80
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
4 changed files with 113 additions and 7 deletions

View file

@ -0,0 +1,9 @@
export type Heartbeat = {
readonly monitorID: number;
readonly status: number;
readonly time: string;
readonly msg: string;
readonly ping: number;
readonly important: boolean;
readonly duration: number;
};