Type Alias CourseCategoryInterface

CourseCategoryInterface: {
    title: string;
    visibility: CourseVisibility;
    thumbnailUrl?: string;
    subCategories?: CourseSubCategoryInterface[];
    posts?: CoursePostInterface[];
}

Type declaration