Files
gameyfin/app/src/main/frontend/endpoints/DownloadEndpoint.ts
T

3 lines
135 B
TypeScript

export function downloadGame(gameId: number, provider: string) {
window.open(`/download/${gameId}?provider=${provider}`, '_top');
}