Minayotan/src/misskey/user.ts

9 lines
135 B
TypeScript

export type User = {
id: string;
name: string;
username: string;
host?: string | null;
isFollowing?: boolean;
isBot: boolean;
};