Move SignalProtocolStore off window

This commit is contained in:
Fedor Indutny
2025-10-06 17:02:13 -07:00
committed by GitHub
parent 065017ce52
commit 911133decd
36 changed files with 295 additions and 393 deletions
+12
View File
@@ -0,0 +1,12 @@
// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
// When updating this make sure to update `observedCapabilities` type in
// ts/types/Storage.d.ts
export type CapabilitiesType = {
attachmentBackfill: boolean;
};
export type CapabilitiesUploadType = {
attachmentBackfill: true;
spqr: true;
};