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
|
|
|
}
|