andreyctkn/redux-rx-middleware

Move Observable data from payload to meta operation?

Closed this issue · 0 comments

proposal:

        const action: ObservableAction<number> = {
            type: "ACTION_TYPE",
            payload: { .. },
            meta: {
                [ObservableApi]: {
                    stream: from([1, 2, 3]),
                }
            }
        };