qclair-quantshield-react-native-android
Version:
🛡️ Post-quantum encryption for React Native Android apps. ML-KEM + AES-GCM encryption with automatic proxy routing and key rotation. (Android only - iOS coming soon)
18 lines (14 loc) • 334 B
TypeScript
/**
* Global type declarations for React Native environment
*/
declare global {
var fetch: (input: RequestInfo | URL, init?: RequestInit) => Promise<Response>;
var XMLHttpRequest: {
new(): XMLHttpRequest;
prototype: XMLHttpRequest;
};
interface RequestInfo {
url?: string;
}
}
export {};