mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-27 06:52:35 -04:00
7 lines
183 B
TypeScript
7 lines
183 B
TypeScript
export const reactionOptions = ['👍', '❤️', '👏', '😂', '😯', '😢', '😡'];
|
|
|
|
export interface BlogReactions {
|
|
total: Record<string, number>;
|
|
user?: string[];
|
|
}
|