Type Alias CourseProductInterface

CourseProductInterface: {
    title: string;
    description: string;
    categories: CourseCategoryInterface[];
    imageUrl?: string;
    instructorDetails?: CourseInstructorDetails;
}

Type declaration