UNPKG

@yujinakayama/apple-music

Version:

Apple Music API Client for Node.js

12 lines 267 B
import { Resource } from './resource'; export interface Genre extends Resource { attributes?: Genre.Attributes; type: 'genres'; } declare namespace Genre { interface Attributes { name: string; } } export {}; //# sourceMappingURL=genre.d.ts.map