/ src / types / startup.d.ts
startup.d.ts
 1  export interface StartupConfig {
 2    news: StartupNewsType[]
 3  }
 4  
 5  export interface StartupNewsType {
 6    img: string
 7    title: string
 8    subtitle: string
 9    duration: string
10    link: string
11    cover?: boolean
12  }