* setExtras - Some times, actions may require extra context to know what they're * supposed to do. The extras object should hold any additional information * we want to pass down to the action. * * @param {Object} extras
(extras: Record<string, unknown>)
| 402 | * @param {Object} extras |
| 403 | */ |
| 404 | setExtras (extras: Record<string, unknown>): Record<string, unknown> { |
| 405 | this._extras = extras; |
| 406 | |
| 407 | return this._extras; |
| 408 | } |
| 409 | |
| 410 | /** |
| 411 | * willApply - Method called before the application of an action |