TypeScript interfaces for collections
interface ShopifyCollection { id: string handle: string title: string description: string descriptionHtml: string image: ShopifyImage | null updatedAt: string onlineStoreUrl: string | null seo: ShopifySeo }
shoppy.collections.list()
interface CollectionsResult { items: ShopifyCollection[] pageInfo: ShopifyPageInfo }
.select()
type CollectionField = | 'id' | 'handle' | 'title' | 'description' | 'descriptionHtml' | 'image' | 'updatedAt' | 'onlineStoreUrl' | 'seo'