Type alias Course

Course: {
    abstract: string;
    coverImageUrl: string;
    createdAt: Date;
    description: string;
    goals: string;
    id: number;
    key: string;
    status: CourseStatus;
    title: string;
    type: CourseType;
    updatedAt: Date;
}

Model Course

Type declaration

  • abstract: string
  • coverImageUrl: string
  • createdAt: Date
  • description: string
  • goals: string
  • id: number
  • key: string
  • status: CourseStatus
  • title: string
  • type: CourseType
  • updatedAt: Date