Files
Desktop/ts/types/Capabilities.d.ts
T
2026-06-03 10:50:23 -07:00

15 lines
405 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;
usernameChangeSyncMessage: boolean;
};
export type CapabilitiesUploadType = {
attachmentBackfill: true;
spqr: true;
usernameChangeSyncMessage: true;
};