You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
403 B
TypeScript
9 lines
403 B
TypeScript
export interface OutgoingMessage {
|
|
timestamp: number;
|
|
}
|
|
|
|
// Remove me once this is read
|
|
// Note for Audric, we don't have a `plainText()` function here because i realised that we use Uint8Arrays when encrypting
|
|
// It wouldn't make sense for this then to be `plainTextBuffer(): UInt8Array` as that's specific to OutgoingContentMessage.
|
|
// Thus i've left it out and moved it to outgoing content message
|