verdnatura-chat/app/definitions/UserStatus.ts

7 lines
100 B
TypeScript
Raw Normal View History

2022-02-28 18:00:47 +00:00
export enum UserStatus {
ONLINE = 'online',
AWAY = 'away',
OFFLINE = 'offline',
BUSY = 'busy'
}