rudeshark.net/packages/megalodon/src/entities/mention.ts

9 lines
115 B
TypeScript

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