7 lines
108 B
TypeScript
7 lines
108 B
TypeScript
export enum AlertType {
|
|
Error = 'Error',
|
|
Info = 'Info',
|
|
Success = 'Success',
|
|
Warning = 'Warning',
|
|
}
|