File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -112,9 +112,7 @@ function unenroll(item) {
112112 * after `after` milliseconds.
113113 * @param {Function } callback
114114 * @param {number } [after]
115- * @param {any } [arg1]
116- * @param {any } [arg2]
117- * @param {any } [arg3]
115+ * @param {...any } [args]
118116 * @returns {Timeout }
119117 */
120118function setTimeout ( callback , after , ...args ) {
@@ -158,9 +156,7 @@ function clearTimeout(timer) {
158156 * every `repeat` milliseconds.
159157 * @param {Function } callback
160158 * @param {number } [repeat]
161- * @param {any } [arg1]
162- * @param {any } [arg2]
163- * @param {any } [arg3]
159+ * @param {...any } [args]
164160 * @returns {Timeout }
165161 */
166162function setInterval ( callback , repeat , ...args ) {
@@ -208,9 +204,7 @@ Timeout.prototype[SymbolToPrimitive] = function() {
208204 * Schedules the immediate execution of `callback`
209205 * after I/O events' callbacks.
210206 * @param {Function } callback
211- * @param {any } [arg1]
212- * @param {any } [arg2]
213- * @param {any } [arg3]
207+ * @param {...any } [args]
214208 * @returns {Immediate }
215209 */
216210function setImmediate ( callback , ...args ) {
You can’t perform that action at this time.
0 commit comments