basant307/AI_Governance_Project
048
1import MutexInterface from './MutexInterface';2import SemaphoreInterface from './SemaphoreInterface';3export declare function tryAcquire(mutex: MutexInterface, alreadyAcquiredError?: Error): MutexInterface;4export declare function tryAcquire(semaphore: SemaphoreInterface, alreadyAcquiredError?: Error): SemaphoreInterface;5 