fix lint errors in FollowingEntityService.ts

This commit is contained in:
Hazelnoot 2024-11-02 17:43:11 -04:00
parent 872f987845
commit ddf572c22f

View file

@ -14,9 +14,9 @@ import type { MiLocalUser, MiUser } from '@/models/User.js';
import { MiFollowing } from '@/models/Following.js';
import { bindThis } from '@/decorators.js';
import { IdService } from '@/core/IdService.js';
import { UserEntityService } from './UserEntityService.js';
import { QueryService } from '@/core/QueryService.js';
import { RoleService } from '@/core/RoleService.js';
import { UserEntityService } from './UserEntityService.js';
type LocalFollowerFollowing = MiFollowing & {
followerHost: null;
@ -176,7 +176,6 @@ export class FollowingEntityService {
}
}
interface FollowsQueryParams {
readonly host: string;
readonly limit: number;