export interface Song { no: string; title: string; singer: string; } export type Criteria = 'title' | 'singer';