server/types/entities/mention.ts

7 lines
90 B
TypeScript
Raw Normal View History

2023-09-11 05:46:20 +02:00
export interface Mention {
2023-09-11 05:31:08 +02:00
id: string;
username: string;
url: string;
acct: string;
2023-09-11 05:46:20 +02:00
}