1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-11 05:02:37 +01:00

Fix: Edited timestamp is Date or NULL

This commit is contained in:
Diego Magdaleno 2021-07-21 15:36:21 -05:00
parent 9c86deaa7d
commit 1bd9e2d787

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[];