Skip to content

Commit

Permalink
fix: fix query params export
Browse files Browse the repository at this point in the history
  • Loading branch information
pviti committed Apr 9, 2024
1 parent 56e6201 commit 616cda4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ interface QueryParamsList<R extends Resource = Resource> extends QueryParamsRetr
pageSize?: QueryPageSize
}

type QueryParams<R extends Resource> = QueryParamsRetrieve<R> | QueryParamsList<R>
type QueryParams<R extends Resource = Resource> = QueryParamsRetrieve<R> | QueryParamsList<R>

export type { QueryParamsRetrieve, QueryParamsList, QueryParams, QueryFilter }

Expand Down

0 comments on commit 616cda4

Please sign in to comment.