ing
This commit is contained in:
4
model/alert/Alert.ts
Normal file
4
model/alert/Alert.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export interface Alert {
|
||||
created: string;
|
||||
msg: string;
|
||||
}
|
||||
5
model/alert/AlertMetric.ts
Normal file
5
model/alert/AlertMetric.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import {Alert} from './Alert';
|
||||
|
||||
export interface AlertMetric extends Alert {
|
||||
status: string;
|
||||
}
|
||||
5
model/alert/AlertSystem.ts
Normal file
5
model/alert/AlertSystem.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import {Alert} from './Alert';
|
||||
|
||||
export interface AlertSystem extends Alert {
|
||||
status?: string; // test
|
||||
}
|
||||
3
model/alert/index.ts
Normal file
3
model/alert/index.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export * from './Alert';
|
||||
export * from './AlertMetric';
|
||||
export * from './AlertSystem';
|
||||
Reference in New Issue
Block a user