Update use-pagination.ts
This commit is contained in:
parent
24f83a105c
commit
0bdb4943af
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
import { computed, isRef, onMounted, ref, shallowRef, triggerRef, watch } from 'vue';
|
import { computed, isRef, onMounted, ref, shallowRef, triggerRef, watch } from 'vue';
|
||||||
import * as Misskey from 'misskey-js';
|
import * as Misskey from 'misskey-js';
|
||||||
import type { ComputedRef, Ref, ShallowRef } from 'vue';
|
import type { ComputedRef, DeepReadonly, Ref, ShallowRef } from 'vue';
|
||||||
import { misskeyApi } from '@/utility/misskey-api.js';
|
import { misskeyApi } from '@/utility/misskey-api.js';
|
||||||
|
|
||||||
const MAX_ITEMS = 30;
|
const MAX_ITEMS = 30;
|
||||||
|
@ -237,7 +237,7 @@ export function usePagination<T extends MisskeyEntity>(props: {
|
||||||
});
|
});
|
||||||
|
|
||||||
return {
|
return {
|
||||||
items,
|
items: items as DeepReadonly<ShallowRef<T[]>>,
|
||||||
queuedAheadItemsCount,
|
queuedAheadItemsCount,
|
||||||
fetching,
|
fetching,
|
||||||
fetchingOlder,
|
fetchingOlder,
|
||||||
|
|
Loading…
Reference in New Issue