@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.
19 lines (18 loc) • 426 B
TypeScript
export interface Company {
}
export declare namespace Company {
/**
* Interface representing a document type.
*/
interface IDocumentType {
/** Code representing the document type. */
code: string;
/** Title of the document type. */
title: string;
}
/**
* Constant array of document types.
*/
export const DocumentTypes: IDocumentType[];
export {};
}