Skip to content

Commit

Permalink
fix: list response results return type (#206)
Browse files Browse the repository at this point in the history
It now always returns an array.
  • Loading branch information
Alan Shaw authored Nov 24, 2022
1 parent a95eea4 commit e49c685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/upload-client/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export interface StoreAddResponse {
export interface ListResponse<R> {
cursor?: string
size: number
results?: R[]
results: R[]
}

export interface StoreListResult {
Expand Down

0 comments on commit e49c685

Please sign in to comment.