7 lines
69 B
TypeScript
7 lines
69 B
TypeScript
|
|
||
|
export interface Alert {
|
||
|
created: string;
|
||
|
msg: string;
|
||
|
|
||
|
}
|