@shopify/shopify-api
Version:
Shopify API Library for Node - accelerate development with support for authentication, graphql proxy, webhooks
20 lines (14 loc) • 389 B
text/typescript
export type IdSet = Record<string, string | number | null>;
export type ParamSet = Record<string, any>;
export type Body = Record<string, any>;
export interface ResourcePath {
http_method: string;
operation: string;
ids: string[];
path: string;
}
export type ShopifyRestResources = Record<string, any>;
export interface ResourceNames {
singular: string;
plural: string;
}