Clarify naming
This commit is contained in:
parent
6330a8d9f3
commit
74582de2d1
1 changed files with 4 additions and 4 deletions
|
@ -23,7 +23,7 @@ export type IncomingMessage = Readonly<
|
|||
source?: string;
|
||||
sourceDevice?: number;
|
||||
} & SharedMessageProperties &
|
||||
Message4 &
|
||||
MessageSchemaVersion4 &
|
||||
ExpirationTimerUpdate
|
||||
>;
|
||||
|
||||
|
@ -49,7 +49,7 @@ export type OutgoingMessage = Readonly<
|
|||
recipients?: Array<string>; // Array<PhoneNumber>
|
||||
synced: boolean;
|
||||
} & SharedMessageProperties &
|
||||
Message4 &
|
||||
MessageSchemaVersion4 &
|
||||
ExpirationTimerUpdate
|
||||
>;
|
||||
|
||||
|
@ -57,7 +57,7 @@ export type VerifiedChangeMessage = Readonly<
|
|||
{
|
||||
type: 'verified-change';
|
||||
} & SharedMessageProperties &
|
||||
Message4 &
|
||||
MessageSchemaVersion4 &
|
||||
ExpirationTimerUpdate
|
||||
>;
|
||||
|
||||
|
@ -77,7 +77,7 @@ type ExpirationTimerUpdate = Partial<
|
|||
}>
|
||||
>;
|
||||
|
||||
type Message4 = Partial<
|
||||
type MessageSchemaVersion4 = Partial<
|
||||
Readonly<{
|
||||
hasAttachments: IndexableBoolean;
|
||||
hasVisualMediaAttachments: IndexableBoolean;
|
||||
|
|
Loading…
Reference in a new issue