(file: string, options?: LockOptions)
| 31 | } |
| 32 | |
| 33 | export function lockSync(file: string, options?: LockOptions): () => void { |
| 34 | return getLockfile().lockSync(file, options) |
| 35 | } |
| 36 | |
| 37 | export function unlock(file: string, options?: UnlockOptions): Promise<void> { |
| 38 | return getLockfile().unlock(file, options) |
nothing calls this directly
no test coverage detected