mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 10:19:08 +00:00
9 lines
217 B
TypeScript
9 lines
217 B
TypeScript
// Copyright 2025 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import PQueue from 'p-queue';
|
|
|
|
export const lightSessionResetQueue = new PQueue({ concurrency: 1 });
|
|
|
|
lightSessionResetQueue.pause();
|