verdnatura-chat/app/definitions/IReaction.ts

7 lines
101 B
TypeScript
Raw Normal View History

2022-01-24 20:12:36 +00:00
export interface IReaction {
_id: string;
emoji: string;
usernames: string[];
names: string[];
2022-01-24 20:12:36 +00:00
}