Last active
July 27, 2019 16:36
-
-
Save arturovt/1aa94d3c7c8897d10563889c62a6c69d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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