(...actions: Action[])
| 349 | }; |
| 350 | |
| 351 | const schedule = async (...actions: Action[]): Promise<Persister> => { |
| 352 | arrayPush(mapGet(scheduleActions, scheduleId) as Action[], ...actions); |
| 353 | await run(); |
| 354 | return persister; |
| 355 | }; |
| 356 | |
| 357 | const getStore = (): Store => store; |
| 358 |