dmeditor
Version:
dmeditor is a block-style visual editor. Data is in json format.
16 lines (15 loc) • 369 B
TypeScript
import { DMEData } from '../../core/types';
interface GalleryEntity {
items: Array<{
image: string;
title?: string;
}>;
columns: number;
gap: number;
settings?: {
general?: DMEData.GeneralSettingType;
};
}
declare const initGalleryEntity: () => GalleryEntity;
export { initGalleryEntity };
export type { GalleryEntity };