(path: string)
| 124 | } |
| 125 | |
| 126 | protected async recordMtime(path: string): Promise<void> { |
| 127 | const mtime = await this.getMtime(path); |
| 128 | if (mtime !== null) { |
| 129 | this.mtimes.set(path, mtime); |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * Implement any browserless-core-specific shutdown logic here. |