fix types
Some checks failed
API report (misskey.js) / report (push) Has been cancelled
Lint / locale_verify (push) Has been cancelled

This commit is contained in:
kakkokari-gtyih 2025-12-17 13:42:10 +09:00
parent 143296afed
commit c13856e700

View File

@ -25,7 +25,10 @@ const props = defineProps<{
type: 'following' | 'followers'; type: 'following' | 'followers';
}>(); }>();
const followingPaginator = markRaw(new Paginator('users/following', { const followingPaginator = markRaw(new Paginator<'users/following', {
req: Misskey.entities.UsersFollowingRequest & { query?: string; };
res: Misskey.entities.UsersFollowingResponse;
}>('users/following', {
limit: 20, limit: 20,
computedParams: computed(() => ({ computedParams: computed(() => ({
userId: props.user.id, userId: props.user.id,