nx.js
Functions

clearInterval

clearInterval(id?): void

The global clearInterval() method clears a timer set with the setInterval() method.

Parameters

ParameterTypeDescription
id?numberThe ID of the timer you want to clear, as returned by setInterval().

Returns

void

See

https://developer.mozilla.org/docs/Web/API/clearInterval

On this page