Skip to content

Instantly share code, notes, and snippets.

@arturovt
Last active July 27, 2019 16:36
Show Gist options
  • Save arturovt/1aa94d3c7c8897d10563889c62a6c69d to your computer and use it in GitHub Desktop.
Save arturovt/1aa94d3c7c8897d10563889c62a6c69d to your computer and use it in GitHub Desktop.
interface TaskData {
/**
* Если это `setInterval`, то `true`, иначе `false`
*/
isPeriodic?: boolean;
/**
* `delay`, который мы передаем вторым аргументом
*/
delay?: number;
/**
* Идентификатор, который возвращают `setTimeout|setInterval`
*/
handleId?: number;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment