Files
cartlog-admin/node_modules/motion-dom/dist/es/animation/GroupAnimationWithThen.mjs
2026-01-01 15:25:19 +05:30

10 lines
252 B
JavaScript

import { GroupAnimation } from './GroupAnimation.mjs';
class GroupAnimationWithThen extends GroupAnimation {
then(onResolve, _onReject) {
return this.finished.finally(onResolve).then(() => { });
}
}
export { GroupAnimationWithThen };