UNPKG

@bitblit/ratchet-aws

Version:

Common tools for use with AWS browser and node

6 lines (5 loc) 214 B
export interface SyncLockProvider { acquireLock(lockKey: string, expirationSeconds?: number): Promise<boolean>; releaseLock(lockKey: string): Promise<void>; clearExpiredSyncLocks?(): Promise<number>; }