Type Alias ISharedLockReaderAcquiredState

ISharedLockReaderAcquiredState: {
    acquiredSlots: string[];
    acquiredSlotsCount: number;
    freeSlotsCount: number;
    limit: number;
    remainingTime: TimeSpan | null;
    type: typeof SHARED_LOCK_READER_STATE["READER_ACQUIRED"];
}

IMPORT_PATH: "@daiso-tech/core/shared-lock/contracts"