Skip to content

Commit

Permalink
fix(Notification): add missing 'failed' notification event
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurxavierx committed Aug 22, 2016
1 parent 4b45965 commit 1771a00
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Lime/Protocol/Notification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export interface NotificationListener {
}

export const NotificationEvent = {
FAILED: <NotificationEvent> "failed",
ACCEPTED: <NotificationEvent> "accepted",
VALIDATED: <NotificationEvent> "validated",
AUTHORIZED: <NotificationEvent> "authorized",
Expand All @@ -18,7 +19,8 @@ export const NotificationEvent = {
CONSUMED: <NotificationEvent> "consumed"
};
export type NotificationEvent
= "accepted"
= "failed"
| "accepted"
| "validated"
| "authorized"
| "dispatched"
Expand Down

0 comments on commit 1771a00

Please sign in to comment.