Called when the effect's props are updated.
(props: any)
| 39 | setup(context: EffectContext): void; |
| 40 | /** Called when the effect's props are updated. */ |
| 41 | setProps?(props: any): void; |
| 42 | /** Called when this effect is removed */ |
| 43 | cleanup(context: EffectContext): void; |
| 44 | } |
no outgoing calls