Advertisement
Guest User

Untitled

a guest
Apr 21st, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. interface ProjectNotification {
  2. id: string;
  3. notification: Rx.Notification<Project>;
  4. }
  5.  
  6. function projectNotification(id, notification): ProjectNotification {
  7. return { id: id, notification: notification }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement