Files
SerpentRace/node_modules/motion-dom/dist/es/animation/GroupAnimationWithThen.mjs
T
2025-08-23 00:05:18 +02: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 };