Move Observable data from payload to meta operation?
Closed this issue · 0 comments
andreyctkn commented
proposal:
const action: ObservableAction<number> = {
type: "ACTION_TYPE",
payload: { .. },
meta: {
[ObservableApi]: {
stream: from([1, 2, 3]),
}
}
};