import { STContentLight } from './content-light'; import { STLinkedContentTypeEnum } from './enums/linked-content-type'; import { STTrack } from './track'; export interface STSection { id: number; name: string; type: string; linkedContentType?: STLinkedContentTypeEnum; order?: number; highlighted?: boolean; searchable?: boolean; numberOfItems?: number; imgSrc?: string; landscapeImgSrc?: string; hdImgSrc?: string; hdLandscapeImgSrc?: string; mainColor?: string; linkedContents?: Array; linkedContentsKeyList?: Array; linkedTracks?: Array; linkedTracksKeyList?: Array; createdAt?: Date; updatedAt?: Date; }