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

12 lines
208 B
TypeScript
Raw Normal View History

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