// src/appleid.d.ts interface AppleIDAuth { init(options: { clientId: string; scope?: string; redirectURI: string; }): void; signIn(): void; } interface Window { AppleID: { auth: AppleIDAuth; }; }