Guest User

Untitled

a guest
Mar 23rd, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. type INotification = 'sms' | 'email' | 'push';
  2.  
  3. const NOTIFICATION_TYPE: {[key: string]: INotification} = {
  4. SMS: 'sms',
  5. EMAIL: 'email',
  6. PUSH: 'push'
  7. };
  8.  
  9. this.notificationType: INotification = NOTIFICATION_TYPE.EMAIL;
Add Comment
Please, Sign In to add comment