refactor: fix types

This commit is contained in:
syuilo 2023-02-12 18:54:38 +09:00
parent 451bc0b444
commit 5d3d5cd59c
2 changed files with 2 additions and 2 deletions

View File

@ -434,7 +434,7 @@ export class UserFollowingService {
followee: {
id: User['id']; host: User['host']; uri: User['host']; inbox: User['inbox']; sharedInbox: User['sharedInbox'];
},
follower: CacheableUser,
follower: User | CacheableUser,
): Promise<void> {
const request = await this.followRequestsRepository.findOneBy({
followeeId: followee.id,

View File

@ -14,7 +14,7 @@ export interface IObject {
attachment?: any[];
inReplyTo?: any;
replies?: ICollection;
content?: string;
content?: string | null;
startTime?: Date;
endTime?: Date;
icon?: any;