index-legacy.mjs 432 Bytes
import { stepsOrder } from './order.mjs';
import { frame, cancelFrame } from './frame.mjs';

/**
 * @deprecated
 *
 * Import as `frame` instead.
 */
const sync = frame;
/**
 * @deprecated
 *
 * Use cancelFrame(callback) instead.
 */
const cancelSync = stepsOrder.reduce((acc, key) => {
    acc[key] = (process) => cancelFrame(process);
    return acc;
}, {});

export { cancelSync, sync };
//# sourceMappingURL=index-legacy.mjs.map