1
0
Files
pawkey-sk/packages/megalodon/src/misskey/entities/followRequest.ts
T
2023-09-24 01:44:53 +02:00

10 lines
151 B
TypeScript

/// <reference path="user.ts" />
namespace MisskeyEntity {
export type FollowRequest = {
id: string
follower: User
followee: User
}
}