Type Alias ISemaphoreUnacquiredState

ISemaphoreUnacquiredState: {
    acquiredSlots: string[];
    acquiredSlotsCount: number;
    freeSlotsCount: number;
    limit: number;
    type: typeof SEMAPHORE_STATE["UNACQUIRED"];
}

IMPORT_PATH: "@daiso-tech/core/semaphore/contracts"