Initial commit

This commit is contained in:
Vitaly Gashkov
2025-03-26 13:19:45 +05:00
commit baac0bcc23
8 changed files with 213 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
export function extractSecrets(): Promise<{
// Crunchyroll app ID
id: string;
// Crunchyroll app secret
secret: string;
// Base64 encoded `id:secret` string
encoded: string;
// Basic `Authorization` header to access Crunchyroll mobile APIs
header: string;
}>;