Skip to content
Snippets Groups Projects
releaseNotes.model.ts 157 B
export interface ReleaseNotes {
  show: boolean
  notes: Notes[]
  redirectLink?: string
}

export interface Notes {
  title: string
  description: string
}