11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
/// <reference path="userDetail.ts" />
|
|
|
|
namespace MisskeyEntity {
|
|
export type Follower = {
|
|
id: string
|
|
createdAt: string
|
|
followeeId: string
|
|
followerId: string
|
|
follower: UserDetail
|
|
}
|
|
}
|