fix(core): update

This commit is contained in:
2021-03-08 17:30:04 +00:00
parent 193c3970b6
commit 04604770b1
13 changed files with 10696 additions and 643 deletions

5
ts/status.ts Normal file
View File

@@ -0,0 +1,5 @@
export type TServiceStatus = 'up' | 'down';
export interface IHourlyStatus {
states: { unixTimes: number; status: TServiceStatus };
}