From 83bedfcf44f3e8b3f6dc4a532d8125671fe5a207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Ribeiro?= Date: Fri, 3 Feb 2017 03:27:15 +0000 Subject: [PATCH] Provide option to send extra data through optional meta field. --- src/dispatcher.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dispatcher.ts b/src/dispatcher.ts index 98934b9..d19b956 100644 --- a/src/dispatcher.ts +++ b/src/dispatcher.ts @@ -3,6 +3,7 @@ import { BehaviorSubject } from 'rxjs/BehaviorSubject'; export interface Action { type: string; payload?: any; + meta?: any; } export class Dispatcher extends BehaviorSubject {