Squash merge audio-player-component into main

This commit is contained in:
2026-02-13 20:39:23 -06:00
parent 9b7cfd5bd1
commit d78c0584e2
122 changed files with 11750 additions and 1175 deletions
+8 -3
View File
@@ -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>;
+14 -6
View File
@@ -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);
}