UNPKG

@nestjs-cqrs-eventsourcing/core

Version:

Event sourcing for nestjs CQRS

7 lines (6 loc) 205 B
import type { Lock, Unlock } from 'redis-lock'; export declare class DistributedLockService { private lock; constructor(lock: Lock); getLock(name: string, timeout?: number): Promise<Unlock>; }