This commit is contained in:
geek
2018-05-02 17:03:39 +09:00
parent 96fdfd4f4a
commit b854cbb766
111 changed files with 343 additions and 714 deletions

4
model/alert/Alert.ts Normal file
View File

@@ -0,0 +1,4 @@
export interface Alert {
created: string;
msg: string;
}

View File

@@ -0,0 +1,5 @@
import {Alert} from './Alert';
export interface AlertMetric extends Alert {
status: string;
}

View File

@@ -0,0 +1,5 @@
import {Alert} from './Alert';
export interface AlertSystem extends Alert {
status?: string; // test
}

3
model/alert/index.ts Normal file
View File

@@ -0,0 +1,3 @@
export * from './Alert';
export * from './AlertMetric';
export * from './AlertSystem';