Files
Webklar.com/node_modules/motion-dom/dist/es/animation/GroupAnimationWithThen.mjs
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01: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 };