import { DiscogsApiStatusEnum } from '../enums'; import { DiscogsArtistReleasesParamsInterface, DiscogsSearchRequestInterface } from '../discogs'; export interface DisconnectInterface { status: DiscogsApiStatusEnum; getArtist(artist_id: number, callback?: CallableFunction): any; getArtistReleases(artist_id: number, params: DiscogsArtistReleasesParamsInterface, callback?: CallableFunction): any; getRelease(releaseId: number, callback?: CallableFunction): any; getMaster(master_id: any, callback?: CallableFunction): any; getLabel(labelId: number, callback?: CallableFunction): any; getLabelReleases(labelId: number, params: DiscogsArtistReleasesParamsInterface, callback?: CallableFunction): any; search(query: DiscogsSearchRequestInterface, callback?: CallableFunction): any; }