Squash merge audio-player-component into main
This commit is contained in:
+8
-3
@@ -1,9 +1,14 @@
|
||||
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
||||
// This file is automatically generated. DO NOT EDIT
|
||||
import {library} from '../models';
|
||||
import {context} from '../models';
|
||||
|
||||
export function GetDir():Promise<string>;
|
||||
export function GetAlbumTracks(arg1:number):Promise<Array<library.Track>>;
|
||||
|
||||
export function Init(arg1:context.Context):Promise<void>;
|
||||
export function GetAllAlbums():Promise<Array<library.Album>>;
|
||||
|
||||
export function SetDir(arg1:string):Promise<void>;
|
||||
export function GetAllTracks():Promise<Array<library.Track>>;
|
||||
|
||||
export function Scan():Promise<void>;
|
||||
|
||||
export function SetContext(arg1:context.Context):Promise<void>;
|
||||
|
||||
@@ -2,14 +2,22 @@
|
||||
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
|
||||
// This file is automatically generated. DO NOT EDIT
|
||||
|
||||
export function GetDir() {
|
||||
return window['go']['library']['Library']['GetDir']();
|
||||
export function GetAlbumTracks(arg1) {
|
||||
return window['go']['library']['Library']['GetAlbumTracks'](arg1);
|
||||
}
|
||||
|
||||
export function Init(arg1) {
|
||||
return window['go']['library']['Library']['Init'](arg1);
|
||||
export function GetAllAlbums() {
|
||||
return window['go']['library']['Library']['GetAllAlbums']();
|
||||
}
|
||||
|
||||
export function SetDir(arg1) {
|
||||
return window['go']['library']['Library']['SetDir'](arg1);
|
||||
export function GetAllTracks() {
|
||||
return window['go']['library']['Library']['GetAllTracks']();
|
||||
}
|
||||
|
||||
export function Scan() {
|
||||
return window['go']['library']['Library']['Scan']();
|
||||
}
|
||||
|
||||
export function SetContext(arg1) {
|
||||
return window['go']['library']['Library']['SetContext'](arg1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user