7 lines
111 B
TypeScript
7 lines
111 B
TypeScript
|
import {Alert} from './Alert';
|
||
|
|
||
|
|
||
|
export interface AlertSystem extends Alert {
|
||
|
status?: string; // test
|
||
|
}
|