genius.ts
Version:
Genius API Wrapper for Node.js
6 lines (5 loc) • 318 B
TypeScript
import { GeniusClient } from "./structures/GeniusClient";
import { Track } from "./structures/Track";
import { ClientOptions, searchTrackOptions, ResponseSong, SongResult } from "./typing/types";
export { GeniusClient, Track, ClientOptions, searchTrackOptions, ResponseSong, SongResult };
export default GeniusClient;