From 77e8d4e125af28ad5939b5f0743ba10b2fa4cbef Mon Sep 17 00:00:00 2001 From: Rosana Ruiz Date: Fri, 24 Aug 2018 18:20:19 +0100 Subject: [PATCH] Remove duplicated method definition --- types/shopify-buy/index.d.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/types/shopify-buy/index.d.ts b/types/shopify-buy/index.d.ts index 55226691c0..28d9dbe5f0 100644 --- a/types/shopify-buy/index.d.ts +++ b/types/shopify-buy/index.d.ts @@ -50,7 +50,6 @@ declare namespace ShopifyBuy { fetchWithProducts(id: string): Promise; // TODO fix to be a type: Docs: Fetches a single collection by ID on the shop, not including products. fetchAll(pageSizeopt?: number): Promise; // TODO fix to be a type: Docs: Fetches all collections on the shop, not including products. fetchAllWithProducts(): Promise; // TODO fix to be a type: DOC: Fetches all collections on the shop, including products. - fetchWithProducts(id: string): Promise; // TODO fix to be a type: DOC: Fetches all collections on the shop, including products. fetchByHandle(handle: string): Promise; // TODO fix to be a type: DOC: Fetches a collection by handle on the shop. Assuming it does not give products fetchQuery(query: Query): Promise; // TODO fix to be a type: DOC: Fetches a collection by handle on the shop. Assuming it does not give products } @@ -106,7 +105,7 @@ declare namespace ShopifyBuy { export interface Query { /** * query: title, collection_type, updated_at - * TODO probably will remove before Defintely Typed PR, + * TODO probably will remove before Defintely Typed PR, * as their community guidelines */ query: string;