11 lines
304 B
JavaScript
11 lines
304 B
JavaScript
import { GroupAnimation } from './GroupAnimation.mjs';
|
|
|
|
class GroupAnimationWithThen extends GroupAnimation {
|
|
then(onResolve, _onReject) {
|
|
return this.finished.finally(onResolve).then(() => { });
|
|
}
|
|
}
|
|
|
|
export { GroupAnimationWithThen };
|
|
//# sourceMappingURL=GroupAnimationWithThen.mjs.map
|