hippofish/packages/megalodon/src/misskey/entities/followRequest.ts
2023-09-23 18:49:47 +02:00

9 lines
147 B
TypeScript

/// <reference path="user.ts" />
namespace MisskeyEntity {
export type FollowRequest = {
id: string;
follower: User;
followee: User;
};
}