-
Notifications
You must be signed in to change notification settings - Fork 2
Let transition be an array #46
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
transitions: {
'init>loading': true,
'loading>ok': (state, res) => res,
'loading>err': (state, res) => res,
'ok>loading': true,
'err>loading': true
}↓
transitions: [
'init>loading'
['loading>ok', (state, res) => res],
['loading>err', (state, res) => res],
'ok>loading',
'err>loading'
]Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request