Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Timer.d.ts 617B

123456789101112131415161718192021222324
  1. declare class Timer {
  2. private _delay;
  3. private _timeout;
  4. private _fn;
  5. private _leading;
  6. private _conditionExecutedCnt;
  7. private _resolve;
  8. private _reject;
  9. private _startTime?;
  10. private _ticks;
  11. private _timeoutId?;
  12. private _mainTimeoutId?;
  13. private _lastError?;
  14. constructor(_delay: number, _timeout: number, _fn: Function, _leading?: boolean);
  15. private _start;
  16. private _stop;
  17. private _stopMain;
  18. private _tick;
  19. private _checkCondition;
  20. private _hasTime;
  21. private _wasConditionExecuted;
  22. }
  23. export default Timer;
  24. //# sourceMappingURL=Timer.d.ts.map