Make most message attribute uses readonly
Co-authored-by: Jamie Kyle <jamie@signal.org>
This commit is contained in:
parent
c619a7b6fd
commit
3555ccc629
53 changed files with 342 additions and 258 deletions
|
@ -1,10 +1,10 @@
|
|||
// Copyright 2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { MessageAttributesType } from '../model-types.d';
|
||||
import type { ReadonlyMessageAttributesType } from '../model-types.d';
|
||||
|
||||
export function getMessageTimestamp(
|
||||
message: Pick<MessageAttributesType, 'received_at' | 'received_at_ms'>
|
||||
message: Pick<ReadonlyMessageAttributesType, 'received_at' | 'received_at_ms'>
|
||||
): number {
|
||||
return message.received_at_ms || message.received_at;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue