monkeeShark/packages/megalodon/src/misskey/entities/following.ts

12 lines
202 B
TypeScript
Raw Normal View History

2023-09-23 16:49:47 +00:00
/// <reference path="userDetail.ts" />
namespace MisskeyEntity {
2023-09-24 23:20:03 +00:00
export type Following = {
id: string;
createdAt: string;
followeeId: string;
followerId: string;
followee: UserDetail;
};
2023-09-23 16:49:47 +00:00
}