@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.
39 lines (38 loc) • 969 B
TypeScript
interface ICalendar {
/**
* The system or method used to organize and measure time.
* Support as calendar value in Intl.DateTimeFormat...
*/
calendar: string;
/**
* Unique code representing the calendar.
*/
code: string;
/**
* Human-readable name of the calendar.
*/
title: string;
description: string;
/**
* Display format for both date and time in the calendar.
* Suitable for presenting full date-time details.
*/
displayFormat: string;
/**
* Display format for date only in the calendar.
* Excludes time details.
*/
displayFormatDateOnly: string;
/**
* Represents the first day of the week.
*/
first_day_of_week: number;
/**
* Default Local.
*/
default_local: string;
}
/**
* Calendar configurations containing details of various calendar types.
*/ export declare const Calendar: Record<string, ICalendar>;
export {};