Idempotent release: safe to call multiple times; best-effort on missing/mismatched lock.
()
| 79 | export interface AcquireLockResult { |
| 80 | /** Idempotent release: safe to call multiple times; best-effort on missing/mismatched lock. */ |
| 81 | release(): void; |
| 82 | /** Absolute path of the lock file that was acquired. */ |
| 83 | lockPath: string; |
| 84 | /** |
no outgoing calls
no test coverage detected