update dist

This commit is contained in:
woodser 2023-02-27 10:23:01 -05:00
parent c55426f5e1
commit 15e29ece75
13 changed files with 1969 additions and 2661 deletions

View file

@ -120,6 +120,14 @@ class HavenoUtils {
}
throw new Error("PaymentAccountForm does not have field " + fieldId);
}
/**
* Wait for the duration.
*
* @param {number} durationMs - the duration to wait for in milliseconds
*/
static async waitFor(durationMs) {
return new Promise(function (resolve) { setTimeout(resolve, durationMs); });
}
}
exports.default = HavenoUtils;
HavenoUtils.logLevel = 0;