(file: string, options?: UnlockOptions)
| 35 | } |
| 36 | |
| 37 | export function unlock(file: string, options?: UnlockOptions): Promise<void> { |
| 38 | return getLockfile().unlock(file, options) |
| 39 | } |
| 40 | |
| 41 | export function check(file: string, options?: CheckOptions): Promise<boolean> { |
| 42 | return getLockfile().check(file, options) |
nothing calls this directly
no test coverage detected