UNPKG

@aurigma/design-editor-iframe

Version:

Using this module you can embed Design Editor (a part of Customer's Canvas) to your page through the IFrame API.

15 lines (14 loc) 464 B
import { IPlaceholderItemData, IImageItemData } from "@aurigma/design-atoms/Services/ItemsDataApplierInterfaces"; /** * A structure defining the default parameters of gallery tabs. * @public */ export interface IGalleryItemConfig extends IImageItemData, IPlaceholderItemData { } /** * A structure defining the default parameters of the image gallery. * @public */ export interface IGalleryDefaultConfig { [tabName: string]: IGalleryItemConfig; }