@raona/components
Version:
React components used at Raona to work with SPFx
38 lines (37 loc) • 1.02 kB
TypeScript
import { BannerTypes } from "../components/banners/Banner";
export interface BannerEntity {
id: number;
uniqueIdentifier?: string | number;
type: BannerTypes;
title: string;
description: string;
date: string;
schedule?: string;
startDate?: string;
endDate?: string;
category?: string;
imageUrl?: string;
isFav?: boolean;
likedByCurrentUser?: boolean;
Nlikes?: number;
showComments: boolean;
Ncomments?: number;
hasVideo?: boolean;
showVideo?: boolean;
urlVideo?: string;
showText?: boolean;
location?: string;
relatedPeople?: any[];
absoluteUrl?: string;
vacancyInfo?: {
ubication: string;
reference: string;
publishedDate: string;
availablePositions: string;
deadlineDate?: string;
};
auxiliarObject?: any;
addToMyCalendarTranslated?: string;
cancelSubscriptionTranslated?: string;
eventSubscriptionTranslated?: string;
}