export type IdSet = Record; export type ParamSet = Record; export type Body = Record; export interface ResourcePath { http_method: string; operation: string; ids: string[]; path: string; } export type ShopifyRestResources = Record; export interface ResourceNames { singular: string; plural: string; }