Mission Control Dashboard - Initial implementation
This commit is contained in:
27
node_modules/motion-dom/dist/es/animation/utils/WithPromise.mjs
generated
vendored
Normal file
27
node_modules/motion-dom/dist/es/animation/utils/WithPromise.mjs
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
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 };
|
||||
//# sourceMappingURL=WithPromise.mjs.map
|
||||
Reference in New Issue
Block a user