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;
|
source?: string;
|
||||||
sourceDevice?: number;
|
sourceDevice?: number;
|
||||||
} & SharedMessageProperties &
|
} & SharedMessageProperties &
|
||||||
Message4 &
|
MessageSchemaVersion4 &
|
||||||
ExpirationTimerUpdate
|
ExpirationTimerUpdate
|
||||||
>;
|
>;
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ export type OutgoingMessage = Readonly<
|
||||||
recipients?: Array<string>; // Array<PhoneNumber>
|
recipients?: Array<string>; // Array<PhoneNumber>
|
||||||
synced: boolean;
|
synced: boolean;
|
||||||
} & SharedMessageProperties &
|
} & SharedMessageProperties &
|
||||||
Message4 &
|
MessageSchemaVersion4 &
|
||||||
ExpirationTimerUpdate
|
ExpirationTimerUpdate
|
||||||
>;
|
>;
|
||||||
|
|
||||||
|
@ -57,7 +57,7 @@ export type VerifiedChangeMessage = Readonly<
|
||||||
{
|
{
|
||||||
type: 'verified-change';
|
type: 'verified-change';
|
||||||
} & SharedMessageProperties &
|
} & SharedMessageProperties &
|
||||||
Message4 &
|
MessageSchemaVersion4 &
|
||||||
ExpirationTimerUpdate
|
ExpirationTimerUpdate
|
||||||
>;
|
>;
|
||||||
|
|
||||||
|
@ -77,7 +77,7 @@ type ExpirationTimerUpdate = Partial<
|
||||||
}>
|
}>
|
||||||
>;
|
>;
|
||||||
|
|
||||||
type Message4 = Partial<
|
type MessageSchemaVersion4 = Partial<
|
||||||
Readonly<{
|
Readonly<{
|
||||||
hasAttachments: IndexableBoolean;
|
hasAttachments: IndexableBoolean;
|
||||||
hasVisualMediaAttachments: IndexableBoolean;
|
hasVisualMediaAttachments: IndexableBoolean;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue