- 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
17 lines
459 B
TypeScript
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
|