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