From 8a7e36e46d6f9b11309f5b3750d410cd7abcd6c3 Mon Sep 17 00:00:00 2001 From: Ulad Kasach Date: Sat, 14 Sep 2024 14:58:01 -0400 Subject: [PATCH] fix(types): allow fully optional page.range input --- src/domain/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/domain/constants.ts b/src/domain/constants.ts index 492766a..1a2f938 100644 --- a/src/domain/constants.ts +++ b/src/domain/constants.ts @@ -20,7 +20,7 @@ export type PaginationInput = { /** * the range of items to include in this page */ - range: PickAny<{ + range: Partial<{ /** * .what = filter to items with values of this range key * - filter on `item.value >= since.value`