Files
crextractor/crextractor.d.ts
T

11 lines
291 B
TypeScript
Raw 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;
2025-08-23 21:14:56 +05:00
// HTTP header with Basic Authorization to access Crunchyroll mobile APIs
authorization: string;
2025-03-26 13:19:45 +05:00
}>;