song.ts 118 B

1234567
  1. export interface Song {
  2. no: string;
  3. title: string;
  4. singer: string;
  5. }
  6. export type Criteria = 'title' | 'singer';