@selldone/sdk-storefront
Version:
A TypeScript SDK to connect to your shop and build a fully functional storefront and website by simply developing a frontend web application. All backend operations are seamlessly managed by the serverless Selldone solution.
33 lines (32 loc) • 585 B
TypeScript
export declare const ProductCondition: {
NEW: {
title: string;
code: string;
icon: string;
};
REFURBISHED: {
title: string;
code: string;
icon: string;
};
USED: {
title: string;
code: string;
icon: string;
};
USED_FAIR: {
title: string;
code: string;
icon: string;
};
USED_GOOD: {
title: string;
code: string;
icon: string;
};
USED_LIKE_NEW: {
title: string;
code: string;
icon: string;
};
};