server/types/entities/mention.ts
Jesse Wierzbinski 436a79d99f
Initial commit
2023-09-10 17:31:08 -10:00

7 lines
88 B
TypeScript

export type Mention = {
id: string;
username: string;
url: string;
acct: string;
};