Files
Desktop/ts/types/Capabilities.d.ts
2025-10-07 10:02:13 +10:00

13 lines
332 B
TypeScript

// 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;
};