@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.
73 lines (72 loc) • 1.24 kB
TypeScript
export declare const VendorsCsvHeaders: string[];
export declare const VendorsCsvStyler: {
Name: {
type: string;
required_product: boolean;
};
Description: {
type: string;
};
Enable: {
type: string;
default: boolean;
};
Access: {
type: string;
default: boolean;
};
Email: {
type: string;
};
Address: {
type: string;
};
Web: {
type: string;
};
Tel: {
type: string;
};
Bank: {
type: string;
};
"Bank Account Name": {
type: string;
};
"Bank Account Number": {
type: string;
};
"Bank Routing Number": {
type: string;
};
IBAN: {
type: string;
};
Swift: {
type: string;
};
"Bank Address": {
type: string;
};
Icon: {
type: string;
};
Country: {
type: string;
};
State: {
type: string;
};
Business: {
type: string;
};
"Business Name": {
type: string;
};
"Tax ID": {
type: string;
};
};
export declare class VendorsCsvFormat {
static CheckValidFile(headers: string[]): boolean;
}