12 lines
202 B
TypeScript
12 lines
202 B
TypeScript
|
/// <reference path="userDetail.ts" />
|
||
|
|
||
|
namespace MisskeyEntity {
|
||
|
export type Following = {
|
||
|
id: string;
|
||
|
createdAt: string;
|
||
|
followeeId: string;
|
||
|
followerId: string;
|
||
|
followee: UserDetail;
|
||
|
};
|
||
|
}
|