/**
* Wait for the specified time
*
* @param time timeout duration in milliseconds
*/exportvar timeout = function (time) {
if (time === void0) { time = 0; }
returnnewPromise(function (resolve) { returnsetTimeout(resolve, time); });
};
//# sourceMappingURL=promise.js.map