signal-desktop/ts/util/getSendTarget.ts

14 lines
393 B
TypeScript

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