UNPKG

modulo-editor

Version:

A flexible and extensible block-based editor for React applications

12 lines (11 loc) 243 B
export interface GalleryImage { id: string; url: string; fileId: string; alt: string; } export interface GalleryData { images: GalleryImage[]; layout: "grid" | "masonry" | "slider" | "list"; isRemoving?: boolean; }