From 07cd63bffa06351495dd0629462dfb9c1a2e169a Mon Sep 17 00:00:00 2001 From: Joachim Van Herwegen Date: Mon, 7 Dec 2020 14:41:20 +0100 Subject: [PATCH] chore: Export expiring lock and locker --- index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.ts b/index.ts index fe7732544..9e219723b 100644 --- a/index.ts +++ b/index.ts @@ -169,6 +169,8 @@ export * from './src/util/errors/UnauthorizedHttpError'; export * from './src/util/errors/UnsupportedMediaTypeHttpError'; // Util/Locking +export * from './src/util/locking/ExpiringLock'; +export * from './src/util/locking/ExpiringResourceLocker'; export * from './src/util/locking/Lock'; export * from './src/util/locking/ResourceLocker'; export * from './src/util/locking/SingleThreadedResourceLocker';