Files
Webklar.com/node_modules/motion-dom/dist/es/animation/utils/WithPromise.mjs
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

27 lines
547 B
JavaScript

class WithPromise {
constructor() {
this.updateFinished();
}
get finished() {
return this._finished;
}
updateFinished() {
this._finished = new Promise((resolve) => {
this.resolve = resolve;
});
}
notifyFinished() {
this.resolve();
}
/**
* Allows the animation to be awaited.
*
* @deprecated Use `finished` instead.
*/
then(onResolve, onReject) {
return this.finished.then(onResolve, onReject);
}
}
export { WithPromise };