Files
crextractor/crextractor.d.ts
T
2025-08-23 21:14:56 +05:00

11 lines
291 B
TypeScript

export function extractSecrets(): Promise<{
// Crunchyroll app ID
id: string;
// Crunchyroll app secret
secret: string;
// Base64 encoded `id:secret` string
encoded: string;
// HTTP header with Basic Authorization to access Crunchyroll mobile APIs
authorization: string;
}>;