Type Alias ISemaphoreAcquiredState

ISemaphoreAcquiredState: {
    acquiredSlots: string[];
    acquiredSlotsCount: number;
    freeSlotsCount: number;
    limit: number;
    remainingTime: TimeSpan | null;
    type: typeof SEMAPHORE_STATE["ACQUIRED"];
}

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