mirror of
https://github.com/danog/amp.git
synced 2024-12-14 18:37:30 +01:00
14 lines
194 B
PHP
14 lines
194 B
PHP
<?php
|
|
|
|
namespace Amp;
|
|
|
|
class UvTimerWatcher {
|
|
public $id;
|
|
public $uvStruct;
|
|
public $callback;
|
|
public $msDelay;
|
|
public $msInterval;
|
|
public $mode;
|
|
public $isEnabled;
|
|
}
|