1
0
Files
pawkey-sk/packages/megalodon/src/misskey/entities/following.ts
T
2023-09-25 01:49:57 +02:00

12 lines
208 B
TypeScript

/// <reference path="userDetail.ts" />
namespace MisskeyEntity {
export type Following = {
id: string
createdAt: string
followeeId: string
followerId: string
followee: UserDetail
}
}