mirror of
https://github.com/nicetry247/offlineacademy.git
synced 2026-07-26 11:58:44 +00:00
9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
export interface CourseTitleLike {
|
|
name: string
|
|
displayName?: string | null
|
|
}
|
|
|
|
export function getCourseDisplayName(course: CourseTitleLike): string {
|
|
return course.displayName?.trim() || course.name
|
|
}
|