database-petani-mobile/node_modules/motion-dom/dist/es/animation/controls/Group.mjs
2026-02-23 16:39:35 +07:00

14 lines
360 B
JavaScript

import { BaseGroupPlaybackControls } from './BaseGroup.mjs';
/**
* TODO: This is a temporary class to support the legacy
* thennable API
*/
class GroupPlaybackControls extends BaseGroupPlaybackControls {
then(onResolve, onReject) {
return Promise.all(this.animations).then(onResolve).catch(onReject);
}
}
export { GroupPlaybackControls };