3fd2b55406
This reverts commit 89eea5df52.
12 lines
208 B
TypeScript
12 lines
208 B
TypeScript
/// <reference path="userDetail.ts" />
|
|
|
|
namespace MisskeyEntity {
|
|
export type Following = {
|
|
id: string
|
|
createdAt: string
|
|
followeeId: string
|
|
followerId: string
|
|
followee: UserDetail
|
|
}
|
|
}
|