mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-20 02:08:57 +00:00
13 lines
332 B
TypeScript
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;
|
|
};
|