InterfaceNewsEntry

Interface for news

interface NewsEntry {
    cardContent: null | string;
    coverImagePath: null | string;
    date: null | number;
    entryType: null | EntryType;
    linkPath: null | string;
}

Properties

cardContent: null | string

Content displayed on card

coverImagePath: null | string

Path to the cover image

date: null | number

Unix time of creation

entryType: null | EntryType

Type of news

linkPath: null | string

Link path to the article