wip on autotagging
This commit is contained in:
+6
@@ -7,6 +7,8 @@ export function BrowseReleaseGroups(arg1:string):Promise<Array<explore.MBRelease
|
||||
|
||||
export function BrowseReleases(arg1:string):Promise<Array<explore.MBRelease>>;
|
||||
|
||||
export function CAALimiter():Promise<explore.RateLimiter>;
|
||||
|
||||
export function CheckLibraryMBIDs(arg1:Array<string>):Promise<Record<string, string>>;
|
||||
|
||||
export function CoverArtGroupURL(arg1:string):Promise<string>;
|
||||
@@ -25,6 +27,8 @@ export function GetArtistMBID(arg1:string):Promise<string>;
|
||||
|
||||
export function GetArtistPlayCount(arg1:string):Promise<number>;
|
||||
|
||||
export function GetCandidateThumbnail(arg1:string,arg2:string):Promise<string>;
|
||||
|
||||
export function GetIndexStatus():Promise<explore.IndexStatus>;
|
||||
|
||||
export function GetLibrarySimilarArtists(arg1:string):Promise<Array<explore.LBSimilarArtist>>;
|
||||
@@ -49,6 +53,8 @@ export function LookupArtist(arg1:string):Promise<explore.MBArtist>;
|
||||
|
||||
export function LookupReleaseGroup(arg1:string):Promise<explore.MBReleaseGroup>;
|
||||
|
||||
export function MusicBrainz():Promise<explore.MusicBrainzClient>;
|
||||
|
||||
export function PopulateLocalCrossReferences():Promise<void>;
|
||||
|
||||
export function RecordSearchClick(arg1:string,arg2:string,arg3:string):Promise<void>;
|
||||
|
||||
@@ -10,6 +10,10 @@ export function BrowseReleases(arg1) {
|
||||
return window['go']['explore']['Service']['BrowseReleases'](arg1);
|
||||
}
|
||||
|
||||
export function CAALimiter() {
|
||||
return window['go']['explore']['Service']['CAALimiter']();
|
||||
}
|
||||
|
||||
export function CheckLibraryMBIDs(arg1) {
|
||||
return window['go']['explore']['Service']['CheckLibraryMBIDs'](arg1);
|
||||
}
|
||||
@@ -46,6 +50,10 @@ export function GetArtistPlayCount(arg1) {
|
||||
return window['go']['explore']['Service']['GetArtistPlayCount'](arg1);
|
||||
}
|
||||
|
||||
export function GetCandidateThumbnail(arg1, arg2) {
|
||||
return window['go']['explore']['Service']['GetCandidateThumbnail'](arg1, arg2);
|
||||
}
|
||||
|
||||
export function GetIndexStatus() {
|
||||
return window['go']['explore']['Service']['GetIndexStatus']();
|
||||
}
|
||||
@@ -94,6 +102,10 @@ export function LookupReleaseGroup(arg1) {
|
||||
return window['go']['explore']['Service']['LookupReleaseGroup'](arg1);
|
||||
}
|
||||
|
||||
export function MusicBrainz() {
|
||||
return window['go']['explore']['Service']['MusicBrainz']();
|
||||
}
|
||||
|
||||
export function PopulateLocalCrossReferences() {
|
||||
return window['go']['explore']['Service']['PopulateLocalCrossReferences']();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user