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