UNPKG

audd.io

Version:

A NodeJS package used to interact with the music recognition API provided by Audd.io

9 lines (8 loc) 285 B
import { Base } from './base'; import { IEnterpriseResponse, IGuess, IResponse } from './interface'; export declare class Audd { recognize: Base<IResponse>; recognizeWithOffset: Base<IGuess>; enterprise: Base<IEnterpriseResponse>; constructor(token: string); }