Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

26 Zeilen
581 B

  1. export type CardType = 'INFO_PAGE' | 'EXTERNAL_LINK' | 'IMAGE_GALLERY' | 'SERVICE_REQUEST';
  2. export interface Card {
  3. id: string;
  4. portalId: string;
  5. title: string;
  6. imageUrl: string;
  7. extraImages?: string[];
  8. shortDescription: string;
  9. fullContent: string;
  10. cardType: CardType;
  11. actionUrl?: string;
  12. displayOrder: number;
  13. }
  14. export interface Portal {
  15. id: string;
  16. tenantId: string;
  17. title: string;
  18. welcomeText: string;
  19. heroImageUrl: string;
  20. logoUrl: string;
  21. themeColor: string;
  22. fadeHeroImage?: boolean;
  23. maxGridColumns?: number;
  24. }