Files
crextractor/crunchys.d.ts
T
2025-03-26 13:19:45 +05:00

11 lines
276 B
TypeScript

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;
}>;