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

10 lines
157 B
TypeScript
Raw Normal View History

2019-03-25 21:23:04 +01:00
/**
* Basic type for a person mentioned in a Status
*/
export type Mention = {
url: string;
username: string;
acct: string;
id: string;
};