interface Author { id: number name: string } interface Song { id: number title: string author: Author|string }