@alisdigital/types-library
Version:
TypeScript type definitions for Papilet ecosystem with session soft delete and event management features
29 lines (28 loc) • 594 B
TypeScript
export interface ISliderImageModelAttributes {
_id: string;
title: string;
image: {
id: string;
url: string;
storage: string;
};
additionalImages?: {
mobile?: {
id: string;
url: string;
storage: string;
};
desktop?: {
id: string;
url: string;
storage: string;
};
};
imageType?: "mobile" | "desktop";
link?: string;
target?: "_blank" | "_self";
isActive: boolean;
order: number;
createdAt: Date;
updatedAt: Date;
}