export type Control = { pause: () => void; continue: () => void; reset: () => void; }; export type EachConfigs = { status: boolean; cb?: () => unknown | Promise; }; export type EachOptions = { immediate?: boolean; };