Files
Desktop/ts/util/getSendTarget.ts
Fedor Indutny 366b875fd2 Introduce Service Id Types
Co-authored-by: Scott Nonnenberg <scott@signal.org>
2023-08-21 09:30:32 -07:00

15 lines
372 B
TypeScript

// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ConversationAttributesType } from '../model-types.d';
import type { ServiceIdString } from '../types/ServiceId';
export function getSendTarget({
uuid,
pni,
}: Pick<ConversationAttributesType, 'uuid' | 'pni'>):
| ServiceIdString
| undefined {
return uuid || pni;
}