mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-21 10:50:14 +01:00
14 lines
214 B
TypeScript
14 lines
214 B
TypeScript
|
|
export enum ESide {
|
||
|
|
Top = 'top',
|
||
|
|
Right = 'right',
|
||
|
|
Bottom = 'bottom',
|
||
|
|
Left = 'left',
|
||
|
|
}
|
||
|
|
|
||
|
|
export enum NotificationSeverity {
|
||
|
|
INFO = 'info',
|
||
|
|
SUCCESS = 'success',
|
||
|
|
WARNING = 'warning',
|
||
|
|
ERROR = 'error',
|
||
|
|
}
|