hyperspace-desktop-client-w.../src/types/Mention.tsx

10 lines
149 B
TypeScript

/**
* Basic type for a person mentioned in a Status
*/
export type Mention = {
url: string;
username: string;
acct: string;
id: string;
};