dmeditor
Version:
dmeditor is a block-style visual editor. Data is in json format.
17 lines (16 loc) • 415 B
TypeScript
import { DMEData } from '../../core/types';
interface CarouselEntity {
animation: 'default' | 'fade';
autoPlay: boolean;
items: Array<{
link: string;
image: string;
title?: string;
}>;
settings: {
general?: DMEData.GeneralSettingType;
};
}
declare const initCarouselEntity: () => CarouselEntity;
export { initCarouselEntity };
export type { CarouselEntity };