refactor: paginationの型を明示する (#12809)

* refactor: paginationの型を明示する

* asではなくsatisfiesを使うように
This commit is contained in:
GrapeApple0 2023-12-26 21:40:27 +09:00 committed by Marie
parent 790f509ebe
commit 6415a789ae
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828
37 changed files with 93 additions and 93 deletions

View file

@ -38,7 +38,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<script lang="ts" setup>
import { shallowRef, computed } from 'vue';
import MkPagination from '@/components/MkPagination.vue';
import MkPagination, { Paging } from '@/components/MkPagination.vue';
import MkButton from '@/components/MkButton.vue';
import { userPage, acct } from '@/filters/user.js';
import * as os from '@/os.js';
@ -51,7 +51,7 @@ const paginationComponent = shallowRef<InstanceType<typeof MkPagination>>();
const pagination = {
endpoint: 'following/requests/list' as const,
limit: 10,
};
} satisfies Paging;
function accept(user) {
os.api('following/requests/accept', { userId: user.id }).then(() => {