Skip to content

Commit

Permalink
🚑️ Fixed missing Message properties
Browse files Browse the repository at this point in the history
  • Loading branch information
ZickZenni committed Sep 4, 2024
1 parent a606457 commit fa65e4e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/discord/structures/Message.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
import { Snowflake } from './Snowflake';
import { IUserData } from './user/BaseUser';

export interface Message {
content: string;
timestamp: string;
id: Snowflake;
author: IUserData;
}

0 comments on commit fa65e4e

Please sign in to comment.