Fix typing of timeout

This commit is contained in:
rijkvanzanten
2020-10-20 16:25:53 -04:00
parent 3879ae6969
commit a84f40c45f

View File

@@ -100,7 +100,7 @@ export function useItems(collection: Ref<string>, query: Query) {
}
});
let loadingTimeout: number | null = null;
let loadingTimeout: any = null;
return { itemCount, totalCount, items, totalPages, loading, error, changeManualSort, getItems };