Skip to content

Commit

Permalink
added checkout paginated response
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Hemann committed Mar 31, 2021
1 parent 767f8e7 commit b7a86b1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,9 @@ declare class Shopify {
count: (params?: any) => Promise<number>;
create: (params?: any) => Promise<Shopify.ICheckout>;
get: (token: string) => Promise<Shopify.ICheckout>;
list: (params?: any) => Promise<Shopify.ICheckout[]>;
list: (
params?: any
) => Promise<Shopify.IPaginatedResult<Shopify.ICheckout[]>>;
shippingRates: (token: string) => Promise<any>;
update: (token: any, params: any) => Promise<Shopify.ICheckout>;
};
Expand Down

0 comments on commit b7a86b1

Please sign in to comment.