mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-11 10:36:53 +00:00
14 lines
475 B
TypeScript
14 lines
475 B
TypeScript
import { currentWindowSize } from './currentWindowSize';
|
|
import { currentWindowStart } from './currentWindowStart';
|
|
import { currentScheduleTimestamp } from './currentScheduleTimestamp';
|
|
import { currentTimeBounty } from './currentTimeBounty';
|
|
import { currentSchedulingToggle } from './currentSchedulingToggle';
|
|
|
|
export const schedulingCurrentSagas = [
|
|
currentWindowSize,
|
|
currentWindowStart,
|
|
currentScheduleTimestamp,
|
|
currentTimeBounty,
|
|
currentSchedulingToggle
|
|
];
|