Still figuring out how typescript works with rest APIs

This commit is contained in:
Eclypsed
2024-01-31 12:19:57 -05:00
parent b7daf9c27c
commit dda5b7f6d2
6 changed files with 94 additions and 107 deletions

10
src/app.d.ts vendored
View File

@@ -11,6 +11,16 @@ declare global {
// interface Platform {}
}
namespace Jellyfin {
interface AuthData {
User: {
Name: string
Id: string
}
AccessToken: string
}
}
interface User {
id: string
username: string