Files
Andrei 58f8093689 Rebrand from 'Redirect Intelligence v2' to 'URL Tracker Tool V2' throughout UI
- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
2025-08-19 19:12:23 +00:00

17 lines
459 B
TypeScript

/**
* Shared utilities and types for Redirect Intelligence v2
*/
export * from './types/api';
export declare const constants: {
readonly API_BASE_URL: string;
readonly RATE_LIMIT: {
readonly WINDOW_MS: number;
readonly MAX_REQUESTS: 100;
};
readonly REDIRECT_LIMITS: {
readonly MAX_HOPS: 20;
readonly TIMEOUT_MS: 15000;
readonly RESPONSE_BODY_LIMIT: 5000;
};
};
//# sourceMappingURL=index.d.ts.map