interfaces.d.ts 122 B

12345678910
  1. interface Author {
  2. id: number
  3. name: string
  4. }
  5. interface Song {
  6. id: number
  7. title: string
  8. author: Author|string
  9. }