* adding typeorm to api * switching to sqlite * switching to sqlite * switching to sqlite * migrating to sqlite * updating terraform * updating infrastructure
4 lines
103 B
TypeScript
4 lines
103 B
TypeScript
export interface Alert {
|
|
severity: 'danger' | 'default' | 'success' | 'warning';
|
|
message: string;
|
|
} |