()
| 30 | private updateInterval: NodeJS.Timer; |
| 31 | |
| 32 | constructor() { |
| 33 | this.touch(); |
| 34 | this.updateInterval = setInterval(() => this.touch(), LeaseFile.updateInterval); |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Returns whether the given file path points to a valid lease. |
nothing calls this directly
no test coverage detected