6 lines
101 B
TypeScript
6 lines
101 B
TypeScript
|
import {Alert} from './Alert';
|
||
|
|
||
|
export interface AlertMetric extends Alert {
|
||
|
status: string;
|
||
|
}
|