UNPKG

genius-api-wrapper

Version:

## Basic usage

15 lines (13 loc) 216 B
export type Song = { id: number artist: string title: string url: string release_year: string | null lyrics?: string | string[] | null views: number } export type Artist = { id: number artistName: string }