server/types/mastodon/mention.ts

7 lines
100 B
TypeScript
Raw Normal View History

2024-04-14 12:53:21 +02:00
export type Mention = {
2024-04-07 07:30:49 +02:00
id: string;
username: string;
url: string;
acct: string;
2024-04-14 12:53:21 +02:00
};