1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-22 02:31:36 +02:00

Merge pull request #9 from DiegoMagdaleno/master

Fix: edited_timestamp should be either Date | null not Date | undefined
This commit is contained in:
Diego Magdaleno 2021-07-21 15:38:25 -05:00 committed by GitHub
commit d2c924a28b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,7 @@ export interface Message {
application_id?: string;
content?: string;
timestamp: Date;
edited_timestamp?: Date;
edited_timestamp: Date | null;
tts?: boolean;
mention_everyone?: boolean;
mention_user_ids: string[];