GroupAnimationWithThen.mjs 252 B

123456789
  1. import { GroupAnimation } from './GroupAnimation.mjs';
  2. class GroupAnimationWithThen extends GroupAnimation {
  3. then(onResolve, _onReject) {
  4. return this.finished.finally(onResolve).then(() => { });
  5. }
  6. }
  7. export { GroupAnimationWithThen };