Files
react/node_modules/motion-dom/dist/es/animation/GroupAnimationWithThen.mjs
2025-12-28 20:50:08 +00:00

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 };