Skip to content
Snippets Groups Projects
releaseNotes.model.ts 133 B
Newer Older
  • Learn to ignore specific revisions
  • export interface ReleaseNotes {
      show: boolean
      notes: Notes[]
    }
    
    export interface Notes {
      title: string
      description: string
    }