Files
crextractor/crunchys.d.ts
T

11 lines
276 B
TypeScript
Raw Permalink Normal View History

2025-03-26 13:19:45 +05:00
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;
}>;